tags:

views:

92

answers:

3

background: url(../images/corner_tr.gif) no-repeat top right;

working in IE but not working in firefox?

+1  A: 
background: url(../images/corner_tr.gif) no-repeat right center;

you interchange the positions

Treby
+2  A: 

hey check out this.......

http://noroots.blogspot.com/2006/05/css-works-in-ie-but-not-firefox.html

bala3569
+1  A: 

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 */
Sarfraz