Unordered list with boxes - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:UL Element

Description

Unordered list with boxes

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 ww . ja v  a  2s .  com-->
   list-style-type:none;
   width:501px;
   height:501px;
   border:2px solid Chartreuse;
}

li {
   border:2px solid yellow;
   display:inline-block;
   height:100px;
   width:100px;
   display:inline;
}
</style> 
 </head> 
 <body> 
  <ul> 
   <li>Lor</li> 
   <li>Lor</li> 
   <li>Lor</li> 
  </ul>  
 </body>
</html>

Related Tutorials