Advertisement
Guest User

css shadow width problems

a guest
Mar 2nd, 2010
516
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.71 KB | None | 0 0
  1. <html><head>
  2. <style type="text/css">
  3. #container {
  4.         width:960px; min-height:100%; margin:0px auto -32px auto;
  5.            position:relative; padding:0px; background-color:#e6e6e6;
  6.            -moz-box-shadow: -3px 0px 5px rgba(0,0,0,.8),
  7.            3px 0px 5px rgba(0,0,0,.8);}
  8.  
  9.  
  10. #footer{
  11.         width: 100%;
  12.         position: absolute;
  13.         bottom: 5px;
  14.         margin: 0px auto;  
  15.         padding:0px; background-color:#e6e6e6;
  16.        -moz-box-shadow: -3px 0px 5px rgba(0,0,0,.8),
  17.        3px 0px 5px rgba(0,0,0,.8);}
  18. </style>
  19. </head>
  20. <body>
  21. <div id="container">
  22.    <div id="header">prova</div>
  23.    <div id="content">sdfsdf</div>
  24.    <div id="clearfooter">sdfsdfsdf</div>
  25. </div>
  26.  
  27.     <div id="footer">sdfsdf</div>  
  28.  
  29.  
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement