Is there an accepted number format for ordered lists? When using ordered lists in a
structured document, e.g. a Policy or Standards document, I'm using the following
numbering format:
ol li {
list-style-type: decimal;
}
ol li li {
list-style-type: lower-alpha;
}
ol li li li {
list-style-type: lower-roman;
}
which gives the output:
1. HEADING
1. Level One
a) Level Two
b) Level Two
i) Level Three
ii) Level Three
c) Level Two
2. Level One
2. HEADING
1. Level One
a) Level Two
b) Level Two
i) Level Three
ii) Level Three
c) Level Two
2. Level One
etc.
So parts of the document can be referenced as 1.2 section a item i, which seems pretty
messy... There probably isn't a standard as such, but if there is I can't find any
reference to it.
Cheers,
Miles.
*****************************************************
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
*****************************************************