css working in IE but not in firefox?
background: url(../images/corner_tr.gif) no-repeat top right;开发者_StackOverflow
working in IE but not working in firefox?
hey check out this.......
http://noroots.blogspot.com/2006/05/css-works-in-ie-but-not-firefox.html
try this:
background: url(../images/corner_tr.gif) no-repeat top right;
width:image width here. /* ff needs to be told explicitly */
height: image height here. /* ff needs to be told explicitly */
background: url(../images/corner_tr.gif) no-repeat right center;
you interchange the positions
精彩评论