Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 10th, 2012  |  syntax: None  |  size: 1.00 KB  |  hits: 7  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. horizontal tabs to vertical
  2. <!DOCTYPE html>
  3.      <html>
  4.      <head>
  5.      <style type="text/css">
  6.      ul
  7.      {
  8.      list-style-type:none;
  9.      margin:0;
  10.      padding:0;
  11.      }
  12.      a
  13.      {
  14.      display:block;
  15.      width:60px;
  16.      background-color:#dddddd;
  17.      }
  18.      </style>
  19.      </head>
  20.  
  21.      <body>
  22.      <ul>
  23.      <li><a href="#home">Home</a></li>
  24.      <li><a href="#news">News</a></li>
  25.      <li><a href="#contact">Contact</a></li>
  26.      <li><a href="#about">About</a></li>
  27.      </ul>
  28.  
  29.      </body>
  30.      </html>
  31.        
  32. <!DOCTYPE html>
  33.     <html>
  34.     <head>
  35.     <style type="text/css">
  36.     ul
  37.     {
  38.     list-style-type:none;
  39.     margin:0;
  40.     padding:0;
  41.     }
  42.     li
  43.     {
  44.     display:inline;
  45.     }
  46.     </style>
  47.     </head>
  48.  
  49.     <body>
  50.     <ul>
  51.     <li><a href="#home">Home</a></li>
  52.     <li><a href="#news">News</a></li>
  53.     <li><a href="#contact">Contact</a></li>
  54.     <li><a href="#about">About</a></li>
  55.     </ul>
  56.        
  57. use
  58. //vertical  
  59. li
  60.     {
  61.     display:inline;
  62.     }
  63.  
  64. //horizontal
  65.  
  66. li
  67.     {
  68.     display:block;
  69.     }