Advertisement
respectzr

vertical menu css

Jul 1st, 2012
394
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.45 KB | None | 0 0
  1. <style type="text/css">
  2. .test{
  3.     position:fixed;
  4.     width:36px;
  5.     height:300px;
  6.     bottom:0px;
  7.     right:0px;
  8.     top:0px;  
  9. }
  10. .test ul {margin-top:100px; padding:2;}
  11. .test li {list-style: none; opacity:0.4;filter:alpha(opacity=40);}
  12. .test li:hover {opacity:1.0;filter:alpha(opacity=100);}
  13. </style>
  14.  
  15. <div class='test'>
  16. <ul>
  17.         <li>Tekst1</li>
  18.         <li>Tekst2</li>
  19.         <li>Tekst3</li>
  20.         <li>Tekst4</li>
  21.     </ul>
  22. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement