Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS list style images Re: list style images

#66748
cybershot
Participant

I ran into a support issue with firefox. I was using shorthand like this

background:url(../images/new1.png) no-repeat 10px left;

worked ok in I.E 8 but I noticed it didn’t work with firefox, so I ran the code through the css validator and it said there was to many values. So I split it up to

background:url(../images/new1.png) no-repeat;
background-position: 10px left;

also tried

background-position: 10px 0;

no luck in firefox or I.E 8. Any thoughts?