Advertisement
1xptolevitico69

Responsive Fullscreen ( NOT background attachment fixed )

Sep 26th, 2019
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.79 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang=en>
  3. <head>
  4. <title></title>
  5. <meta charset=utf-8>
  6. <meta name="viewport" content="width=device-width">
  7. <style>
  8. body {
  9. width:100%;
  10. margin:0;
  11. }
  12. header {
  13. position:absolute;
  14. width:100%;
  15. background-color:/white;
  16. }
  17.  
  18. h1 {
  19. font-size:40px;
  20. color:white;
  21. text-align:center;
  22. font-family:courier new;
  23. }
  24.  
  25. #box {
  26. position:absolute;
  27. top:50%;
  28. left:50%;
  29. transform:translate(-50%,-50%);
  30. width:98%;
  31. height:95.5vh;
  32. border:0.5vw solid red;
  33. padding:0.5vw;
  34. }
  35.  
  36. img {
  37. width:100%;
  38. height:100%;
  39. }
  40.  
  41. </style>
  42. </head>
  43. <body>
  44.  
  45. <div id='box'>
  46. <header><h1>Taco with Lime</h1></header>
  47. <img src='https://images.pexels.com/photos/461198/pexels-photo-461198.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940' title='Taco'/>
  48. </div>
  49.  
  50. <script>
  51.  
  52. </script>
  53. </body>
  54. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement