4、Bicubic圖像縮放(Bicubic Image Scaling)
你會喜歡這個的。IE那糟糕圖像縮放讓你很困擾?如果你拿IE和其他瀏覽器比較,IE縮小的圖像看起來不如其他瀏覽器。
解決方法:
img { -ms-interpolation-mode: bicubic; }
5、 PNG透明(PNG Transparency)
我猜每個人都知道這個,但我仍把它列在這里,作為以后的參考。 所以如果你想要使用透明圖像并且GIF不能給你想要的質(zhì)量,你會需要這個對PNG的hack。你必須意識到,如果你使用一張PNG圖像作為背景,你將不能設(shè)置背景的位置。
解決方法:
img { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(...); }
6、 IFrame透明背景 (IFrame Transparent Background)
在firefox和safari里你應(yīng)該不會遇到這個問題因為默認(rèn)情況下,iframe的背景被設(shè)置為transparent,但是在IE里,卻不是如此。你需要用到allowTransparency 屬性并且加入下面的CSS代碼來達(dá)成目的。
解決方法:
/* in the iframe element */ <iframe src="content.html" allowTransparency="true"> </iframe>
/* in the iframe docuement, in this case content.html */ body { background-color:transparent; }
7、禁用IE默認(rèn)的垂直滾動條(Disabled IE default Vertical Scroll bar)
默認(rèn)情況下,即使內(nèi)容適合窗口大小,IE(譯注:IE6/7)也會顯示垂直滾動條。你可以使用overflow:auto,讓滾動條只在你需要時出現(xiàn)。
html { overflow: auto; }
出處:藍(lán)色理想
責(zé)任編輯:bluehearts
上一頁 10個糟糕的IE Bug及其修復(fù) [1] 下一頁 10個糟糕的IE Bug及其修復(fù) [3]
◎進(jìn)入論壇網(wǎng)頁制作、WEB標(biāo)準(zhǔn)化版塊參加討論,我還想發(fā)表評論。
|