Advertisement
Guest User

Untitled

a guest
Feb 8th, 2012
591
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.69 KB | None | 0 0
  1. <!doctype html>
  2. <head>
  3. <style type="text/css">
  4. * {
  5.     margin:0; padding:0;
  6. }
  7.  
  8. html, body, #con, #con div {
  9.     height:100%;
  10. }
  11.  
  12. body {
  13.     overflow: hidden;
  14. }
  15.  
  16. #con {
  17.     position:absolute;
  18.     width:2800px;
  19.     white-space: nowrap;
  20. }
  21.  
  22. #con div {
  23.     width:399px;
  24.     background-color:#aaa;
  25.     float:left;
  26.     border-right:#eee dotted 1px;
  27. }
  28.  
  29. #con div.first, #con div.last {
  30.     background-color:#333;
  31. }
  32. </style>
  33. <script src="jquery-1.7.1.min.js"></script>
  34. </head>
  35.  
  36. <body>
  37.     <div id="con">
  38.         <div class="first"></div>
  39.         <div></div>
  40.         <div></div>
  41.         <div></div>
  42.         <div></div>
  43.         <div></div>
  44.         <div class="last"></div>
  45.     </div>
  46. </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement