2011-09-29 71 views
1

圖像(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> 
+0

[http://stackoverflow.com/questions/2176991/支持顯示所有網頁瀏覽器中的圖像](http://stackoverflow.com/questions/2176991/display-tiff-image-in-all-web-browser) – scessor

回答

4

TIF文件重新不是在Web瀏覽器

+0

Jeez,我不知道=//哈哈,你走了。對不起,這個問題! –

+0

PNG或JPEG幾乎是你唯一的選擇(PNG通常取代GIF)。 – ThatMatthew