Created
April 22, 2020 16:50
-
-
Save larturi/bfe1f98d6f16c58cf28ed7684d78fefb to your computer and use it in GitHub Desktop.
Bootstrap - Grid Responsive
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<header> | |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous"> | |
</header> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-lg-3 col-md-4 col-sm-6"> | |
One of three columns | |
</div> | |
<div class="col-lg-3 col-md-4 col-sm-6"> | |
One of three columns | |
</div> | |
<div class="col-lg-3 col-md-4 col-sm-6"> | |
One of three columns | |
</div> | |
<div class="col-lg-3 col-md-4 col-sm-6"> | |
One of three columns | |
</div> | |
</div> | |
</div> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment