matthileo

Untitled

Nov 5th, 2017
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.88 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <style>
  5.  
  6.             .header-box {
  7.  
  8.             }
  9.             .column {
  10.                 float: left;
  11.                 width: 33.33%;
  12.                 background-color:grey;
  13.             }
  14.  
  15.             /* Clear floats after the columns */
  16.             .row:after {
  17.                 content: "";
  18.                 display: table;
  19.                 clear: both;
  20.             }
  21.             @media (max-width: 600px) {
  22.                 .column {
  23.                     width: 100%;
  24.                 }
  25.             }
  26.         </style>
  27.     </head>
  28.     <body>
  29.         <div class="header-box">
  30.             <h1>Header Text</h1>
  31.         </div>
  32.         <div class="row">
  33.             <div class="column">column 1</div>
  34.             <div class="column">column 2</div>
  35.             <div class="column">column 3</div>
  36.         </div>
  37.  
  38.     </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment