Skip to content

Instantly share code, notes, and snippets.

@larturi
Created April 22, 2020 16:50
Show Gist options
  • Save larturi/bfe1f98d6f16c58cf28ed7684d78fefb to your computer and use it in GitHub Desktop.
Save larturi/bfe1f98d6f16c58cf28ed7684d78fefb to your computer and use it in GitHub Desktop.
Bootstrap - Grid Responsive
<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