CSS Support in Mozilla 1.7.2
Posted: Wed Aug 25, 2004 3:55 am
Hi,
I was just testing my website with Mozilla and Firefox (same engine right?). And some properties does not work
Here's the CSS script for <TD>:
And property for <TH>:
Now in IE6 it works perfect, everything as I want it to be... But in Mozilla/Firefox it doesn't work: Have a look here http://www.radix-dev.com. Now I've found this document and I dont really think its on there but just in case: http://www.mozilla.org/docs/web-develop ... -CSS1.html
Basically I think 'background-position' is not working correctly in Gecko engine... Somehow TH.left works but no other, others doesn't have backgrounds like it was ignored while rendering...
Regards,
Takuma
I was just testing my website with Mozilla and Firefox (same engine right?). And some properties does not work
Code: Select all
td.left {
background-attachment: fixed;
background-color: #99CCFF;
background-image: url(library/graphics/bg.gif);
background-repeat: repeat-y;
background-position: left;
border-left: 1px solid #006699;
}
td.right {
background-attachment: fixed;
background-color: #99CCFF;
background-image: url(library/graphics/bg3.gif);
background-repeat: repeat-y;
background-position: right;
border-right: 1px solid #006699;
}Code: Select all
th.left {
background-attachment: fixed;
background-image: url(library/graphics/bg2.gif);
background-repeat: repeat-y;
background-position: left;
border: 1px solid #006699;
border-right: 0px;
}
th.right {
background-attachment: fixed;
background-image: url(library/graphics/bg4.gif);
background-repeat: repeat-y;
background-position: right;
border: 1px solid #006699;
border-left: 0px;
}Basically I think 'background-position' is not working correctly in Gecko engine... Somehow TH.left works but no other, others doesn't have backgrounds like it was ignored while rendering...
Regards,
Takuma
