Search

'스크롤바'에 해당되는 글 1건

  1. 2009.08.21 [javascript] IE6.0 프레임 - 가로 스크롤바 버그
출처: http://hyeonseok.com/pmwiki/index.php/Markup/Frame/

인터넷 익스플로러에서 프레임 안에 표준 DTD 문서를 사용할 때 생기는 스크롤바 제거

<!--[if ie]>
<style type="text/css">
html {
overflow: scroll;
overflow-x: auto;
}
</style>
<![endif]-->