Skip to content

Instantly share code, notes, and snippets.

@fredgrott
Created February 13, 2018 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fredgrott/0efa259fbba6b612851dee39e89e3a3c to your computer and use it in GitHub Desktop.
Save fredgrott/0efa259fbba6b612851dee39e89e3a3c to your computer and use it in GitHub Desktop.
bootstrap card columns

Bootstrap card Columns

CSS

@media (max-width: 575px)  {
  .card-columns{
    column-count: 1;
  }
}
@media (min-width: 576px) and (max-width: 767px){
  .card-columns{
    column-count: 1;
  }
}
@media (min-width: 768px) and (max-width: 991px){
  .card-columns{
    column-count: 2;
  }
}
@media (min-width: 992px) {
  .card-columns{
    column-count: 2;
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment