Home >Web Front-end >HTML Tutorial >Ask about css issues on ie6_html/css_WEB-ITnose
25edfb22a4f469ecb59f1190150159c645a2772a6b6107b401db3c9b82c049c2 54bdf357c58b8a65c66d7c19c8e4d114Hello baby cow!bed06894275b65c1ab86501b08a632eb
I want the realistic result to be:
in firefox It can be displayed normally, but it cannot be displayed in IE6 because the 45a2772a6b6107b401db3c9b82c049c2 tag cannot be adjusted in front of 25edfb22a4f469ecb59f1190150159c6. Please tell me how to deal with it, thank you!
The following is my css code:
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~