Border-bottom for <li> tag - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:UL Element

Description

Border-bottom 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">
div .testimonial ul li {
   border-bottom:2px dotted Chartreuse;
}
</style> <!--  w  w  w  . j a v  a2 s .co m-->
 </head> 
 <body> 
  <div> 
   <div class="testimonial"> 
    <ul> 
     <li>Lore</li> 
    </ul> 
   </div> 
  </div>  
 </body>
</html>

Related Tutorials