Problem with repeating background image in Fifrfox

liunx

Guest
Hi!

I don't understand why background-image or background-color don't work in Firefox!

Work well in IE


div#window {
width: 730px;
margin: 0 auto;
background-image: url("../images/f_body.gif");
}Hi there turb,

You will need to define height
to get it to work in browsers other than I.E.

c:D:DtheadThank coothead!

But why if i use this:


div#window {
margin: 0 auto;
width: 730px;
height: 200px;
background-image: url("../images/f_body.gif");
}


it's working but if i use that


div#window {
margin: 0 auto;
width: 730px;
height: 100%;
background-image: url("../images/f_body.gif");
}


it doesn't???

tHi there turb,

I am afraid that I cannot say why it does not work for you.
It works for me in I.E. 6, firefox 0.8, Mozilla 1.6, Netscape 7.1
and Opera 7.2 :D

c:D:Dthead
 
Back
Top