Nested ol list styling in html like 1.1, 1.2 etc
Nested ol list styling in HTML like 1.1, 1.2, etc
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
ol {
counter-reset: item;
padding:0 0 0 2em;
margin:0 0 1em
}
li {
display: block;
padding:0 0 0 1em
}
li:before {
content: counters(item, ".") " ";
counter-increment: item
}
</style>
</head>
<body>
<ol>
<li>
test
<ol>
<li>test</li>
<li>test</li>
<li>test
<ol>
<li>test</li>
<li>test</li>
<li>test</li>
<li>test</li>
</ol>
</li>
<li>test</li>
<li>test</li>
</ol>
</li>
<li>test
<ol>
<li>test</li>
<li>test</li>
<li>test</li>
<li>test</li>
<li>test</li>
<li>test</li>
</ol>
</li>
</ol>
</body>
</html>

Post a Comment