밉다에 해당되는 글 1건
- 2009/02/22 IE6 flickering bug 2
간단히 말해, IE6에서 롤오버 이미지를 계속해서 재 읽는 버그
도데체 windows me 와 ie6은 어쩔 수 없단 말인가..
나두 웹 작업을 하지만, ie6은 뭐 그리 건들일게 많은지.
사용자마다 옵션-일반-임시파일을 '페이지 열 때 마다'가 아닌 '자동'으로 맞춰주면 된다지만..
이게 말이 쉽지.
with js
with css
도데체 windows me 와 ie6은 어쩔 수 없단 말인가..
나두 웹 작업을 하지만, ie6은 뭐 그리 건들일게 많은지.
사용자마다 옵션-일반-임시파일을 '페이지 열 때 마다'가 아닌 '자동'으로 맞춰주면 된다지만..
이게 말이 쉽지.
with js
- <script type="text/javascript">
- (function(){
- /*Use Object Detection to detect IE6*/
- var m = document.uniqueID /*IE*/
- && document.compatMode /*>=IE6*/
- && !window.XMLHttpRequest /*<=IE6*/
- && document.execCommand ;
- try{
- if(!!m){
- m("BackgroundImageCache", false, true) /* = IE6 only */
- }
- }catch(oh){};
- })();
- </script>
- <!--[if IE 6]>
- <style type="text/css">
- html {
- filter: expression(document.execCommand("BackgroundImageCache", false, true));
- }
- </style>
- <![endif]-->