프로그래밍/Web
[javascript] IE6.0 프레임 - 가로 스크롤바 버그
galad
2009. 8. 21. 12:02
출처: http://hyeonseok.com/pmwiki/index.php/Markup/Frame/
인터넷 익스플로러에서 프레임 안에 표준 DTD 문서를 사용할 때 생기는 스크롤바 제거
인터넷 익스플로러에서 프레임 안에 표준 DTD 문서를 사용할 때 생기는 스크롤바 제거
<!--[if ie]>
<style type="text/css">
html {
overflow: scroll;
overflow-x: auto;
}
</style>
<![endif]-->