01-体验BootStrap.html 734 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>体验BootStrap</title>
  8. <link rel="stylesheet" href="./bootstrap-3.4.1-dist/css/bootstrap.min.css">
  9. <style>
  10. .container div {
  11. height: 50px;
  12. background-color: pink;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <div class="container">
  18. <div class="col-lg-3 col-md-6 col-sm-12">1</div>
  19. <div class="col-lg-3 col-md-6 col-sm-12">1</div>
  20. <div class="col-lg-3 col-md-6 col-sm-12">1</div>
  21. <div class="col-lg-3 col-md-6 col-sm-12">1</div>
  22. </div>
  23. </body>
  24. </html>