Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.69 KB | None | 0 0
  1. #topMenu {
  2.     list-style-type: none;
  3.     height: 100px;
  4.     margin: 0 auto;
  5.     background-color: #fff;
  6.     width: 980px;
  7.     min-width: 980px;
  8.     font-family: Tahoma;
  9.     font-size: 15px;
  10.     color: #445566;
  11.     border: 1px solid #f00;
  12. }
  13.  
  14. #topMenu ul {
  15.     list-style-type: none;
  16.     margin-top: 40px;
  17. }
  18.  
  19. #topMenu li {
  20.     display: inline-block;
  21.     padding-right: 15px;
  22.     padding-left: 15px;
  23.     border-right: 1px solid #445566;
  24.     text-decoration: underline;
  25. }
  26.  
  27. #topMenu li:last-child {
  28.     border-right: none;
  29. }
  30.  
  31. #topMenu li:last-child:after {
  32.     padding-left: 50px;
  33.     content: '';
  34.     height: 70px;
  35.     vertical-align: middle;
  36.     border-right: 1px solid red;
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement