+ 1
How to create ordered list containing unordered list?
2 Réponses
+ 3
<ol>
<li>
<ul><li></li></ul>
</li>
</ol>
- 1
is this helpful?
<ol>
<li>here is the first</li>
<li>here is the second</li>
<ul>
<li>subcategory one</li>
<li>subcategory two</li>
<li>subcategory three</li>
</ul>
<li>here is the third</li>
</ol>