디자인상 iframe을 불러오면서 백그라운드 컬러 값을 지정해줄때가 있습니다.
지금도 프로젝트를 하면서 그런 상황인데, IE에서 background-color 가 먹히지 않는 다는것을 알게 되었습니다.
검색결과 iframe 속성에 allowTransparency="true" 를 추가 해주면 해결이 되었습니다.
속성을 추가 한 이 후, iframe의 배경스타일을 transparent 로 변경해줍니다.
<iframe src="sample2.html" width="698" height="81" frameborder="0" scrolling="auto" title="" allowTransparency="true"></iframe>
iframe {background:transparent;}
지금도 프로젝트를 하면서 그런 상황인데, IE에서 background-color 가 먹히지 않는 다는것을 알게 되었습니다.
검색결과 iframe 속성에 allowTransparency="true" 를 추가 해주면 해결이 되었습니다.
속성을 추가 한 이 후, iframe의 배경스타일을 transparent 로 변경해줍니다.
<iframe src="sample2.html" width="698" height="81" frameborder="0" scrolling="auto" title="" allowTransparency="true"></iframe>
iframe {background:transparent;}
'이것저것' 카테고리의 다른 글
Firefox 반응형웹디자인 보기 옵션 (0) | 2013.01.15 |
---|---|
IE6,7 display:inline-block; 버그 (0) | 2012.04.12 |
아이폰접근성 VoiceOver 테스트 후기 (0) | 2012.02.27 |
IE6,7 에서 CSS3를 이용한 border-radius, gradient (0) | 2011.12.20 |
FireFox 부가기능 (0) | 2011.11.25 |