Hi,
I got a weird bug.
In my .css file I have the following rule:
.conf-view a
{
padding-left: 10px;
background-image: url("images/bullet-green.gif");
background-position: center left;
background-repeat: no-repeat;
}
The problem is that IE somehow interprets it like this:
.conf-view A /* NOTE - this is copied from the IE-Developer tools css tab. */
background-image : url(images/bullet-green.gif); PADDING-LEFT: 10px
background-repeat : no-repeat
background-position : left center
See the padding-left there?
Now the browser simply ignores the padding rule, resulting in a layout failure..
Is this a known bug? can anyone find a way around it?
Thanks a lot
Kfir