Home › Forums › CSS › list style images › Re: list style images
November 17, 2009 at 10:58 pm
#66748
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?