I'm creating a Table of Contents in HTML/CSS using CSS Counters, and nested OLs, which works great. Now, I want to set a class "toc" on the top level OL (because there are more OLs on the page than just the table of contents).
How do I adjust the CSS selectors so that the counter styles only apply to <ol class="toc">?
If you remove, the class="toc" from the first OL, you'll see the item numbers are nested as you'd expect...when you add the toc class back, it all goes to pot. How do I fix the css selectors so that the nested item numbers work as expected?
<style>
ol {
counter-reset: section; /* Creates a new instance of the
section counter with each ol
element */
list-style-type: none;
text-decoration:underline;
}
li:before {
counter-increment: section; /* Increments only this instance
of the section counter */
content: counters(section, ".") " "; /* Adds the value of all instances
of the section counter separated
by a ".". */
font-weight:bold;
}
</style>
<ol class="toc">
<li>item
<ol>
<li>item
<li>item
<ol>
<li>item
<li>item
<li>item
<li>item
<li>item
</ol>
</li>
<li>item
</ol>
</li>
<li>item
<ol>
<li>item
<li>item
<li>item
<li>item
</ol>
</li>
<li>item
<ol>
<li>item
<li>item
<li>item
<li>item
<li>item
<li>item
</ol>
</li>
<li>item
<ol>
<li>item
<ol>
<li>item
<li>item
<li>item
</ol>
</li>
<li>item
<ol>
<li>item
<li>item</li>
<li>item
<li>item
<li>item
<li>item</li>
</ol>
</li>
<li>item
<ol>
<li>item</li>
<li>item</li>
</ol>
</ol>
</li>
</ol>