Advertisement
1xptolevitico69

Responsive with Media Queries

May 27th, 2019
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.81 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. @media all and (max-width: 600px) {
  9.  h4 {   text-align:center;position:relative;top:-80px;   }
  10.        }  
  11. @media all and (min-width: 601px) and (max-width:900px){
  12.  h4 {   text-align:center;position:relative;top:-65px;   }
  13.        }
  14. @media all and (min-width: 901px) and (max-width:1200px) {
  15.  h4 {   text-align:center;position:relative;top:-45px;   }
  16.        }
  17. @media all and (min-width: 1201px) {
  18.  h4 {   text-align:center;position:relative;top:-35px;   }
  19.        }        
  20.  
  21.      #container {   display:flex;width:90%;border:1px solid;top:10px;                   position:absolute;left:50%;transform:translate(-50%);  }
  22.      img {   width:100%;height:300px;  }
  23.      span {   width:20%;border:1px solid;height:300px;padding:2vw;
  24.                margin:2vw;border-radius:10px;    }
  25. </style>
  26. </head>
  27. <body>
  28. <div id='container'>
  29. <span id='shipping'>
  30. <img src='https://cdn.shopify.com/s/files/1/2803/5056/files/Shopptique_Fast_Shipping_Worldwide.svg?9460' title='Shopptique Fast Shipping Worldwide Icon'/>
  31. <h4>Fast Shipping Worldwide</h4></span>
  32. <span id='return'>
  33. <img src='https://cdn.shopify.com/s/files/1/2803/5056/files/Shoppptique_Easy_30-Day_Returns.svg?9463' title='Shopptique Easy 60-Day Returns Icon'/>
  34. <h4>Easy 30-Day Returns</h4></span>
  35. <span id='warranty'>
  36. <img src='https://cdn.shopify.com/s/files/1/2803/5056/files/Shopptique_100_Secure_Checkout.svg?9463' title='Shopptique International Warranty Icon'/>
  37. <h4>International Warranty</h4></span>
  38. <span id='secure'>
  39. <img src='https://cdn.shopify.com/s/files/1/2803/5056/files/Shopptique_International_Warranty.svg?9463' title='Shopptiqu e100% Secure Checkout Icon'/>
  40. <h4>100% Secure Checkout</h4></span>
  41.  
  42. </div>
  43. </body>
  44. </htm>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement