圖像(logo.tiff)在CSS文件中定義並在索引文件中調用時不會顯示。TIFF格式不適用於CSS
但是,當我以另一種格式(例如gif或jpeg)保存時,它工作得很好。這是否有一個原因或解決方法?
謝謝你們。
CSS文件:
.logo{
float:left;
overflow:hidden;
text-indent:-9999px;
background:url(../images/logo.tiff) no-repeat;
width:218px;
height:103px;
}
index.html文件:
<h1 class="logo"><a href="#">Our Slogan Here</a></h1>
[http://stackoverflow.com/questions/2176991/支持顯示所有網頁瀏覽器中的圖像](http://stackoverflow.com/questions/2176991/display-tiff-image-in-all-web-browser) – scessor