HTML CSS examples for CSS Widget:UL Element
change css of a li bullet
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> li {<!-- w w w . j av a 2 s.c o m--> color:Chartreuse; } li span { color:yellow; } </style> </head> <body> <ul> <li> <span>Lorem </span> </li> <li> <span>Lorem </span> </li> <li> <span>Lorem </span> </li> <li> <span>Lorem </span> </li> </ul> </body> </html>