IE6 마우스 롤오버시 혹은 클릭이벤트로 이미지를 바꾼다거나 백그라운드 포지션이 변경이 될때 깜빡거리는 현상이 일어나는데..
CSS 나 javascript로 방지할 수 있다.
CSS
<style type="text/css"> html { filter: expression(document.execCommand("BackgroundImageCache", false, true));} </style>
Javascript *추천
<script type="text/javascript"> try {document.execCommand("BackgroundImageCache",false,true);}catch(e){} </script>
답글 남기기