Vicky
Vicky

Reputation: 9585

css working in IE but not in firefox?

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

working in IE but not working in firefox?

Upvotes: 0

Views: 363

Answers (3)

Sarfraz
Sarfraz

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

bala3569
bala3569

Reputation: 11010

hey check out this.......

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

Upvotes: 2

Treby
Treby

Reputation: 1320

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

you interchange the positions

Upvotes: 1

Related Questions