简体   繁体   中英

Implement bootstrap gapless card-columns

the current bootstrap implementation of card-columns has gaps. any idea what the css would be to achieve no gaps?

i have tried something like

.card {
  padding: 0px;
  margin: 0px;
}

but this doesn't affect anything.

any idea would be appreciated. thanks!

There is no problem with the card class. You are looking for it wrapper, which has the property column-gap: 1.25rem; . If you set the style .card-columns { column-gap: 0; } .card-columns { column-gap: 0; } , you would remove the space between the columns.

Add .card-columns .card { margin-bottom: 0; } .card-columns .card { margin-bottom: 0; } to completely remove the spaces.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM