View Single Post
Nutrox's Avatar Nutrox Nutrox is offline 1 Blog Entries 13 Creative Assets 2008-03-16 #2 Old  
Something like the following should work, but it depends how you have you li elements styled really:

XHTML Code:
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
  4.  
  5. <head>
  6.  
  7.     <title></title>
  8.  
  9.     <meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
  10.     <meta http-equiv="content-language" content="en-gb"/>
  11.     <meta http-equiv="imagetoolbar" content="false"/>
  12.    
  13.     <meta name="mssmarttagspreventparsing" content="true"/>
  14.  
  15.     <style type="text/css">
  16.         ul, li
  17.         {
  18.             margin:0px;
  19.             padding:0px;
  20.             list-style:none;
  21.         }
  22.         li
  23.         {
  24.             width:200px;
  25.             text-align:right;
  26.         }
  27.         li span
  28.         {
  29.             float:left;
  30.         }
  31.     </style>
  32.  
  33. </head>
  34.    
  35. <body>
  36.  
  37.     <ul>
  38.         <li><span>Left</span> Right</li>
  39.         <li><span>Left</span> Right</li>
  40.         <li><span>Left</span> Right</li>
  41.     </ul>
  42.  
  43. </body>
  44.  
  45. </html>
Reply With Quote