Remove double bullets in nested list - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:UL Element

Description

Remove double bullets in nested list

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
 </head> <!--from  w  w w.  j av a  2 s.c om-->
 <body> 
  <ul> 
   <li>Lore</li> 
   <li>Lore</li> 
   <li style="list-style:none"> 
    <ul> 
     <li>Lore</li> 
     <li>Lore</li> 
     <li>Lore</li> 
    </ul> </li> 
  </ul> 
  <ol> 
   <li>Lore</li> 
   <li>Lore</li> 
   <li style="list-style:none"> 
    <ol> 
     <li>Lore</li> 
     <li>Lore</li> 
     <li>Lore</li> 
    </ol> </li> 
  </ol>  
 </body>
</html>

Related Tutorials