Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <ul>
  2. <li><a href="#"><span>Link</span></a>
  3.  
  4. </li>
  5. <li><a href="#"><span>Link</span></a>
  6.  
  7. </li>
  8. <li><a href="#"><span>Link</span></a>
  9.  
  10. </li>
  11. <li><a href="#"><span>Link</span></a>
  12.  
  13. </li>
  14. </ul>
  15.  
  16. ul li a {
  17. display: block;
  18. text-align: center;
  19. background: orange;
  20. overflow: hidden;
  21. height: 100%;
  22. }
  23. ul li a span {
  24. display: block;
  25. position: relative;
  26. top: 50%;
  27. }
  28.  
  29. ul {
  30. height: 100%;
  31. list-style: none;
  32. display:table;
  33. width:100%;
  34. }
  35.  
  36. ul li {
  37. height: 25%;
  38. display:table-row;
  39. }
  40.  
  41. ul li a {
  42. display: table-cell;
  43. text-align: center;
  44. background: orange;
  45. vertical-align:middle;
  46. border-bottom:1px solid white;
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement