PunkSktBrdr01
11-25-2003, 05:33 PM
I'm trying to make an automatically numbered list, which should look like this:
1)
2)
3)
I don't know why it isn't working, though. Here's the CSS:
.process {
counter-reset: processNum;
}
.process li {
display: list-item;
list-style: none;
}
.process li:before {
display: marker;
content: counter(processNum, decimal);
counter-increment: processNum;
marker-offset: 2em;
width: auto;
text-align: right;
}
I've never done any styling for lists, so this is a bit confusing. Thanks for any help! :)
1)
2)
3)
I don't know why it isn't working, though. Here's the CSS:
.process {
counter-reset: processNum;
}
.process li {
display: list-item;
list-style: none;
}
.process li:before {
display: marker;
content: counter(processNum, decimal);
counter-increment: processNum;
marker-offset: 2em;
width: auto;
text-align: right;
}
I've never done any styling for lists, so this is a bit confusing. Thanks for any help! :)