Advertisement
jahidul_I_babu

box design

Mar 22nd, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.21 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8.     <title>Document</title>
  9. </head>
  10.  
  11. <style>
  12.     .container {
  13.         width: 95%;
  14.         overflow: hidden;
  15.         background-color: whitesmoke;
  16.         margin: 20px auto;
  17.         padding: 20px 0px;
  18.     }
  19.  
  20.     .container ul {
  21.         padding: 0px;
  22.         margin: 0px;
  23.  
  24.     }
  25.  
  26.     .container ul li {
  27.         list-style: none;
  28.         float: left;
  29.         width: 20%;
  30.         height: 300px;
  31.         background: red;
  32.         margin: 40px 30px 0px 20px;
  33.  
  34.     }
  35.  
  36.     @media screen and (max-width:1200px) {
  37.         .container ul li {
  38.             width: 100%;
  39.             margin-left: 50px;
  40.         }
  41.  
  42.         .container ul li {
  43.             float: none;
  44.             width: 90%;
  45.             margin: 40px auto;
  46.         }
  47.     }
  48. </style>
  49.  
  50. <body>
  51.     <div class="container">
  52.         <ul>
  53.             <li>
  54.             </li>
  55.             <li>
  56.  
  57.             </li>
  58.             <li>
  59.  
  60.             </li>
  61.  
  62.             <li>
  63.  
  64.             </li>
  65.         </ul>
  66.     </div>
  67.  
  68. </body>
  69.  
  70. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement