본문으로 바로가기

iframe 사용시 하단에 발생하는 공백 제거방법



| 시작하기에 앞서

iframe 을 사용하다 보면 하단에 하얀 공백이 생길때가 있다. 그때 해결할 방법은 아래와 같다.

| 해결 방법

An iframe in standards mode is display: 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으로 주기만 하면 된다!


출처 : https://ideveloper2.tistory.com/151

'Frontend > HTML' 카테고리의 다른 글

Content Models  (0) 2019.01.16
radio value 가져오기  (0) 2019.01.15
입력양식 (form)  (0) 2019.01.15
멀티미디어 첨부  (0) 2019.01.15
멀티미디어  (0) 2019.01.10