1

The image (logo.tiff) will not display when defined in the CSS file and called in the Index file.

However, when I save it in another format, such as gif or jpeg, it works just fine. Is there a reason or a workaround for this?

Thanks guys.

CSS file:

.logo{
    float:left;
    overflow:hidden;
    text-indent:-9999px;
    background:url(../images/logo.tiff) no-repeat;
    width:218px;
    height:103px;
}

Index.html file:

<h1 class="logo"><a href="#">Our Slogan Here</a></h1>
Ryan Ward Valverde
  • 6,458
  • 6
  • 37
  • 48
  • [http://stackoverflow.com/questions/2176991/display-tiff-image-in-all-web-browser](http://stackoverflow.com/questions/2176991/display-tiff-image-in-all-web-browser) – scessor Sep 29 '11 at 19:28

1 Answers1

5

TIF files re not supported in Web Browsers

AlexC
  • 9,657
  • 17
  • 64
  • 98