Advertisement
Guest User

Untitled

a guest
Jan 18th, 2020
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.48 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. @media only screen and (max-width: 768px) {
  6.     .flex-container {
  7.         display: column;
  8.     }
  9.            
  10. }
  11. .flex-container {
  12.   display: flex;
  13.   background-color: DodgerBlue;
  14. }
  15.  
  16. .flex-container > div {
  17.   background-color: #f1f1f1;
  18.   width: 100px;
  19.   margin: 10px;
  20.   text-align: center;
  21.   line-height: 75px;
  22.   font-size: 30px;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27.  
  28.  
  29. <div class="flex-container">
  30.   <div>1</div>
  31.   <div>2</div>
  32.  
  33. </div>
  34.  
  35. </body>
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement