|
|
IE6下的背景图片用的时候都会再次发送请求,就连一个hover效果同样的背景图片只是位置不同,ie6都会再次请求,这个令人崩溃的事情需要解决掉:
css写法:
<div style="margin-top: 12px; border: 1px solid #ff5500; padding: 4px 5px 4px 4px; font-size: 13px; width: 98%; background-color: #cccccc;">html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
|
|