span {
float:
A pseudo element, with a CSS counter
for ol
list can be used to avoid bug and use of border
s
span {
float: left;
width: 200px;
}
ol {
counter-reset:marker;
}
li {
counter-increment:marker;
list-style-type:none;
box-shadow:0 2px gray;
}
li:before {
content:'\02022 ';
padding-right:0.25em;
float:left;
}
ol li:before {
content:counter(marker)'. ';
}
hr ~* li:before {
text-indent:-1em;
}
li:after {
content:'';
display:table;
clear:both;
- test
- test
- test
- test
- test
- test
- test
- test