💻 프로그래밍/HTML

[HTML] iframe으로 추가한 html 파일 중앙 정렬 하는 법

gameuiux 2024. 5. 21. 12:46
728x90
반응형

<iframe> 요소에 추가한 html

<p><iframe src="https://maay98.github.io/DiscountCalculator/index.html"
width="620" height="500"></iframe></p>

 

 

 

<div> 요소에 인라인 스타일 사용하기

<div style="display: flex; justify-content: center;">
<iframe src="https://maay98.github.io/DiscountCalculator/index.html" width="620" height="500"></iframe></div>
728x90
반응형