Quote:
Originally Posted by nabsltd
Why is it that CSS standard lists won't result in the correct display?
|
To my knowledge, there is very limited flexibility on the list markers (ordered or unordered). For example, I don't know how to specify the desired list "number" as shown in the examples using ol/ul/li css...
EDIT: to be clear, I
have seen some CSS-based workarounds for custom bullets..
e.g.
Code:
ul {
list-style: none;
margin-left: 0;
padding-left: 0;
}
li {
padding-left: 1em;
text-indent: -1em;
}
li:before {
content: "+";
padding-right: 5px;
}
but that doesn't work for a multiple-item ordered list.