li { list-style-image:url(images/1.gif); padding:0px; } li span { width:10px; height:10px; padding:2px; float: left; display:block; margin-left:-48px; *margin-left:-5px; }
The poster first wants the plus sign to be displayed behind the icon?
The poster first wants the plus sign to be displayed behind the icon?
I want to load the plus sign in front of the icon, but after adjusting margin-left:-48px; it still cannot be displayed in ie6.
li { list-style-image:url(images/1.gif); padding:0px; list-style-position:inside;}li span { width:10px; height:10px; padding:2px; float: left; display:block;}
CSS code
li {
list-style-image:url(images/1.gif);
padding:0px;
list-style-position:inside;
}
li span {
width:10px;
height:10px;
padding:2px;
float: left;
display :bloc……
Thank you~