Advertisement
Guest User

Untitled

a guest
Jun 30th, 2015
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>JS Bin</title>
  6. <link rel='stylesheet' type='text/css' href='styles.css'>
  7. <style id="jsbin-css">
  8. body {
  9. z-index:0;
  10. background-color: black;
  11. }
  12. #header {
  13. z-index: 7;
  14. position: fixed;
  15. height: 80px;
  16. width: 102%;
  17. margin: auto;
  18. margin-top: -10px;
  19. margin-left:-2%;
  20. background-color: red;
  21. }
  22. #main_container{
  23. z-index: 1;
  24. /*position: relative;*/
  25. width:800px;
  26. height: 1620px;
  27. margin: 0 auto;
  28. background-color: #A3A6A7;
  29. }
  30. </style>
  31. </head>
  32. <div id='header'>
  33. </div>
  34. <div id='main_container'>
  35. <div id='jumbotron'>
  36. </div>
  37. <div class='materials'>
  38. </div>
  39. <div class='materials'>
  40. </div>
  41. </div>
  42. <div id='footer'></div>
  43.  
  44. <script id="jsbin-source-css" type="text/css">body {
  45. z-index:0;
  46. background-color: black;
  47. }
  48. #header {
  49. z-index: 7;
  50. position: fixed;
  51. height: 80px;
  52. width: 102%;
  53. margin: auto;
  54. margin-top: -10px;
  55. margin-left:-2%;
  56. background-color: red;
  57. }
  58. #main_container{
  59. z-index: 1;
  60. /*position: relative;*/
  61. width:800px;
  62. height: 1620px;
  63. margin: 0 auto;
  64. background-color: #A3A6A7;
  65. }
  66. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement