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
