html5 - How to get decimal ordered list inside an ordered list in HTML -


need decimal kind of listing inner ordred list

1. acsdv dfdfsf   1.1 fasffaf   1.2 wfwe  trtt werwr wr 

please provide suggestions if any. in advance

simply nest ul tags inside each other so:

<ul>   <li>1</li>   <ul>     <li>1.1</li>     <li>1.2</li>     <li>1.3</li>   </ul> <li>2</li>   <ul>     <li>2.1</li>     <li>2.2</li>     <li>2.3</li>   </ul> <li>3</li>   <ul>     <li>3.1</li>     <li>3.2</li>     <li>3.3</li>   </ul> 


Comments

Popular posts from this blog

angular - Is it possible to get native element for formControl? -

unity3d - Rotate an object to face an opposite direction -

javascript - Why jQuery Select box change event is now working? -