Reputation: 9585
background: url(../images/corner_tr.gif) no-repeat top right;
working in IE but not working in firefox?
Upvotes: 0
Views: 363
Reputation: 382696
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 */
Upvotes: 1
Reputation: 11010
hey check out this.......
http://noroots.blogspot.com/2006/05/css-works-in-ie-but-not-firefox.html
Upvotes: 2
Reputation: 1320
background: url(../images/corner_tr.gif) no-repeat right center;
you interchange the positions
Upvotes: 1