Ordered List element inside Label - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:UL Element

Description

Ordered List element inside Label

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="description" content=""> 
  <meta name="keywords" content=""> 
  <title>Lor</title> 
  <style type="text/css">
span.c1 {<!--   www .j  a  v  a  2  s.c  o  m-->
   padding:2em;
   display:inline-block;
}
</style> 
 </head> 
 <body> 
  <ol> 
   <li> <label for="foo"> <span class="c1">L</span> </label> </li> 
   <li> <label for="foo"> <span class="c1">L</span> </label> </li> 
   <li> <label for="foo"> <span class="c1">L</span> </label> </li> 
  </ol>  
 </body>
</html>

Related Tutorials