HTML CSS examples for CSS Property:background-color
Change Background for <li> tag
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> li {<!--from www. j a v a2 s. co m--> background-color:Chartreuse; } .list { background-color:yellow; } </style> </head> <body> <!-- with css tag --> <li>Lorem i</li> <!-- or with css class --> <li class="list">Lorem i</li> </body> </html>