V
V
voproser2019-08-07 16:59:28
Bootstrap
voproser, 2019-08-07 16:59:28

How to make card-columns 4 rows in bootstrap?

How to make card-columns 4 rows in bootstrap?
I have a columns tag, but the columns that stand are lined up in 3 columns, but I would like to have 4.
Maybe someone knows a solution to this problem?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Andrew, 2019-08-07
@samnebudu

Have you looked at the documentation?
SASS mixin:

.card-columns {
  @include media-breakpoint-only(lg) {
    column-count: 4;
  }
  @include media-breakpoint-only(xl) {
    column-count: 5;
  }
}

Add the required media queries.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question