Advertisement
1xptolevitico69

Container 100% responsive

May 31st, 2019
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.93 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title></title>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width">
  7. <style>
  8.  
  9.    #box {   width:90%;height:400px;position:absolute;border:1px solid;
  10.                left:5%;background-color:white;      }
  11.    .container { display:flex;width:100%;position:absolute;top:50%;
  12.                      transform:translate(0,-50%);   }
  13.    .div {   width:30%;height:350px;background-color:red;
  14.                color:white;text-align:center;border:0.1vw solid;
  15.                    position:relative;left:4.5%;    }
  16. </style>
  17. </head>
  18. <body>
  19.  
  20. <div id='box'>
  21. <div class='container'>
  22. <div class='div'>
  23. <h1>Home</h1>
  24. <h1>Home</h1>
  25. <h1>Home</h1>
  26. <h1>Home</h1>
  27. </div>
  28. <div class='div'>
  29. <h1>Home</h1>
  30. <h1>Home</h1>
  31. <h1>Home</h1>
  32. <h1>Home</h1>
  33. </div>
  34. <div class='div'>
  35. <h1>Home</h1>
  36. <h1>Home</h1>
  37. <h1>Home</h1>
  38. <h1>Home</h1>
  39. </div>
  40. </div>
  41. </div>
  42.  
  43.  
  44. <script>
  45.  
  46. </script>
  47. </body>
  48. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement