Advertisement
Guest User

Untitled

a guest
May 24th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <body>
  2. <h1>Something</h1>
  3. <img id="myid" src='images/bigimage.png'/>
  4. <div id="container">
  5. <div id="fast-back">
  6. <p class="big-font">SOMETHING</p>
  7. <p class="small-font">SOMEThiNG ELSE</p>
  8. </div>
  9. </div>
  10. </body>
  11.  
  12. html {
  13. overflow-x: hidden;
  14. }
  15.  
  16. body {
  17. margin: 0;
  18. padding: 0;
  19. background: url(images/body-background.png) top no-repeat;
  20. min-height: 860px;
  21. height: 860px;
  22. }
  23.  
  24. h1 {
  25. margin: 0;
  26. padding: 0;
  27. position: absolute;
  28. color: white;
  29. visibility: hidden;
  30. }
  31. #container {
  32. margin: 0 auto;
  33. padding: 0;
  34. position: relative;
  35. min-width: 1336px;
  36. height: 860px;
  37. width: 1336px;
  38. }
  39. #myid{
  40. position: absolute;
  41. left: 50%;
  42. right: 50%;
  43. margin-left: -1280px;
  44. margin-right: -1280px;
  45. z-index: 1004;
  46. }
  47. #fast-back {
  48. position: relative;
  49. margin-left: 15%; /*it moves even using pixel*/
  50. top: 272px;
  51. z-index: 99999;
  52. text-align: center;
  53. width: 126px;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement