Guest User

Untitled

a guest
May 16th, 2018
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <!doctype html>
  2. <head>
  3. <style type="text/css">
  4. body { padding:150px 0 0; }
  5. #wrapper {
  6. width:760px;
  7. margin:0 auto;
  8. position:relative;
  9. overflow:hidden;
  10. border:5px solid #ddd;
  11. }
  12.  
  13. #around-content {
  14. float:left;
  15. width:100%;
  16. background:red;
  17. }
  18.  
  19. #nav {
  20. position:absolute;
  21. top:5px; left:5px;
  22. background:blue;
  23. }
  24. </style>
  25. </head>
  26. <div id=wrapper>
  27. <div id=around-content>
  28. <div id=content>
  29. this is some.. content..<br>
  30. this is some.. content..<br>
  31. this is some.. content..<br>
  32. this is some.. content..<br>
  33. this is some.. content..<br>
  34. </div>
  35. </div>
  36.  
  37. <div id="nav">
  38. nav!
  39. </div>
  40. </div>
Add Comment
Please, Sign In to add comment