Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

firefox css error

Status
Not open for further replies.

leahyj

MIS
May 5, 2004
107
US
Hi,

I'm getting this error in firefox using my ccs file.

Error in parsing value for property 'background-position'. Declaration dropped.

Code:
.box_propertyinfo {
background-position: fixed;
float: right;
width: 190px;
height: 50px;
}

.font_propertyinfo {
text-transform: capitalize;
text-align: right;
font-size: 11px;
}

Any clues.

Thanks.
 
Thanks,

I got it.

I meant to use position not background-position.

Thanks again.
 
That;s because fixed, is not a valid value for the background-position property.

You either want background-attatchment, or you have to give it an actual position. like:

background-position: top left;

Check here for the available values for background-position.

----------------------------------
Ignorance is not necessarily Bliss, case in point:
Unknown has caused an Unknown Error on Unknown and must be shutdown to prevent damage to Unknown.
 
Should have refreshed before posting

----------------------------------
Ignorance is not necessarily Bliss, case in point:
Unknown has caused an Unknown Error on Unknown and must be shutdown to prevent damage to Unknown.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top