Change Background for <li> tag - HTML CSS CSS Property

HTML CSS examples for CSS Property:background-color

Description

Change Background for <li> tag

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials