Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.26 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1" />
  6.  
  7.     <title>CSS Task</title>
  8.  
  9.     <style>
  10.         * {
  11.             padding: 0;
  12.             margin: 0;
  13.         }
  14.        
  15.         .container {
  16.             width: 100vw;
  17.             min-width: 1200px;
  18.         }
  19.        
  20.         .row {
  21.             clear: both;
  22.         }
  23.        
  24.         .col {
  25.             width: 100%;
  26.             height: 25vh;
  27.             float: left;
  28.         }
  29.        
  30.         @media only screen and (min-width: 600px) {
  31.             .col {
  32.                 width: 50%;
  33.                 height: 50vh;
  34.             }
  35.         }
  36.        
  37.         @media only screen and (min-width: 1200px) {
  38.             .col {
  39.                 width: 25%;
  40.                 height: 100vh;
  41.             }
  42.         }
  43.     </style>
  44.  
  45. </head>
  46. <body>
  47.     <div class="container">
  48.         <div class="row">
  49.             <div class="col" style="background-color:red;"> clo-1 </div>
  50.             <div class="col" style="background-color:blue;"> clo-2 </div>
  51.             <div class="col" style="background-color:green;"> clo-3 </div>
  52.             <div class="col" style="background-color:yellow;"> clo-4 </div>
  53.         </div>
  54.     </div>
  55. </body>
  56. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement