anasazhar

bootstrap1

Nov 12th, 2020
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Col and Row Bootstrap</title>
  5. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
  6. <style type="text/css">
  7. .row > div {
  8. background-color: teal;
  9. padding: 20px;
  10. border: 2px solid black;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <div class="container">
  16. <div class="row">
  17. <div class="col-3">
  18. This is a section
  19. </div>
  20. <div class="col-3">
  21. This is another section
  22. </div>
  23. <div class="col-3">
  24. This is a third section
  25. </div>
  26. <div class="col-3">
  27. This is a fourth section
  28. </div>
  29. </div>
  30. </div>
  31. </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment