Computer Engineering/Web
Web - iframe 사용시 하단에 발생하는 공백 제거방법
Ideveloper2
2018. 9. 17. 22:52
Web:
iframe 사용시 하단에 발생하는 공백 제거방법
| 시작하기에 앞서
iframe 을 사용하다 보면 하단에 하얀 공백이 생길때가 있다. 그때 해결할 방법은 아래와 같다.
| 해결 방법
- https://stackoverflow.com/questions/7290214/html-strange-space-between-iframe-elements
An
iframe
in standards mode isdisplay: inline
by default. That means they will be placed on the text baseline, ie. where the bottom of an 'a' ends, not where the bottom of a 'y' does. The gap you're seeing is the space for descenders in the line of text. This should remove it:
- iframe의 기본 display가 inline이기 때문에 발생한다. 따라서, display 속성을 block으로 주기만 하면 된다!