No replies
Verschwindende
Verschwindende's picture
Offline
Guru
Last seen: 4 weeks 3 days ago
Timezone: GMT-5
Joined: 2009-10-09
Posts: 2057
Points: 2289

In writing an instruction set for a site and deciding on using nested ordered lists I got to thinking about the best way to structure an outline and was just wondering if anyone had a better layout. I think this is typical with the upper roman as the main headings but I'm not quite sure.

ol {
	font-size: .8em;
	font-weight: bold;
	margin: 0 0 1em .6em;
	padding-left: .6em;
	list-style-type: upper-roman;
}
ol ol {
	font-size: 1em;
	font-weight: normal;
	list-style-type: upper-alpha;
}
 
ol ol ol {
	list-style-type: decimal;
}
 
ol ol ol ol {
	list-style-type: lower-alpha;
}
 
ol ol ol ol ol {
	list-style-type: lower-roman;
}