Advertisement
Guest User

compressed css

a guest
Dec 18th, 2011
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.63 KB | None | 0 0
  1. ul, ol, dl {    padding: 0;
  2.     margin: 0;
  3. }
  4.  
  5.  #navWrapper {
  6.     background:#3C6;
  7.     height: 90px;
  8.     float: left;
  9.     position: relative;
  10.     width: 600px;
  11. }
  12.  
  13.  
  14. #nav {
  15.     margin: 0 0 0 0;
  16.     padding: 0;
  17.     list-style: none;
  18.     background-color: #f2f2f2;
  19.     border-bottom: 1px solid #ccc;
  20.     border-top: 1px solid #ccc;
  21.     position: absolute;
  22.     bottom: 0;
  23.     width: 100%;
  24.     }
  25.  
  26. #nav li {
  27.     float: left;
  28.     list-style-type: none;
  29.     width: 25%;
  30.     }
  31.  
  32. #nav li a, #nav a:visited {
  33.     display: block;
  34.     padding: 8px 15px;
  35.     text-decoration: none;
  36.     font-weight: bold;
  37.     color: #069;
  38.     border-right: 1px solid #ccc; }
  39.  
  40. #nav li a:hover, #nav a:active, #nav a:focus {
  41.     color: #c00;
  42.     background-color: #fff; }
  43.  
  44. .clearfloat {
  45. clear:both;
  46. height:0;
  47. font-size: 1px;
  48. line-height: 0px;
  49. }
  50.  
  51. #wrapper {
  52. width: 965px;
  53. background: #FFFFFF;
  54. margin: 0 auto;
  55. }
  56.  
  57. a img {
  58. border: none;
  59. float: left;
  60. }
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69. /* AFTER */
  70.  
  71. ul,ol,dl{padding:0;margin:0}#navWrapper{background:#3C6;height:90px;float:left;position:relative;width:600px}#nav{margin:0;padding:0;list-style:none;background-color:#f2f2f2;border-bottom:1px solid #ccc;border-top:1px solid #ccc;position:absolute;bottom:0;width:100%}#nav li{float:left;list-style-type:none;width:25%}#nav li a,#nav a:visited{display:block;padding:8px 15px;text-decoration:none;font-weight:bold;color:#069;border-right:1px solid #ccc}#nav li a:hover,#nav a:active,#nav a:focus{color:#c00;background-color:#fff}.clearfloat{clear:both;height:0;font-size:1px;line-height:0}#wrapper{width:965px;background:#fff;margin:0 auto}a img{border:0;float:left}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement