Have html list with dots on right - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:UL Element

Description

Have html list with dots on right

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">
ul {<!--   w w  w . j a  v a 2  s. c  om-->
   margin-right:21px;
}

li {
   font-weight:bold;
   text-align:right;
   direction:rtl;
}
</style> 
 </head> 
 <body> 
  <ul> 
   <li>Lorem ipsum d</li> 
   <li>Lorem ipsum</li> 
   <li>Lorem ipsum dolor</li> 
  </ul>  
 </body>
</html>

Related Tutorials