HTML CSS examples for CSS Widget:UL Element
Ordered List element inside Label
<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>