Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am currently working on this website page: https://no.aproposonline.dk/brugte-biler/

as it is right now the page splits the search results into 2 columns, however i would like it to be split into 3, which is proving rather difficult.

I have tried column-count:3 which does not work, it seems as if on columns is two rows, which I don't really know how to fix.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
243 views
Welcome To Ask or Share your Answers For Others

1 Answer

Add this to your CSS

@media (min-width: 1200px) {
.bdt .col-lg-4 {
    flex: 0 0 30% !important;
    max-width: 30% !important;
}
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...