HTML CSS examples for CSS Widget:UL Element
Remove double bullets in nested list
<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>