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

Untitled

By: a guest on Jun 16th, 2012  |  syntax: None  |  size: 0.50 KB  |  hits: 15  |  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. /**
  2.  * The first commented line is your dabblet’s title
  3.  */
  4. body {
  5. margin: 10px;
  6. background: #d23d45;
  7. min-height:100%;
  8. }
  9. .box {
  10.  width: 960px;
  11.  margin: auto;
  12.  background-color: yellow;
  13.  color: blue;
  14. }
  15.  
  16. .box ul li {text-decoration: none; display: inline; margin-left: 15px;float: right;}
  17.  
  18.  
  19. .box ul li a{
  20.  text-decoration: none;
  21.  background-color: gray;
  22.  padding: 5px;
  23.  color: black;
  24. }
  25. .box ul li a:hover {
  26.  color: white;
  27.  background-color: red;
  28. }
  29.  
  30. .box ul li a:active {
  31.  color: grey;
  32.  background-color:  #d23d45;
  33. }