Css 从引导4中的卡列上拆下槽

Css 从引导4中的卡列上拆下槽,css,twitter-bootstrap,twitter-bootstrap-4,bootstrap-4,Css,Twitter Bootstrap,Twitter Bootstrap 4,Bootstrap 4,如何在Bootstrap 4的.card columns容器中删除列和行之间的槽?.card columns容器使用并定义了一个 要删除柱之间的檐槽,需要删除柱间隙: .no-gutter-card-deck.card-columns { column-gap: 0; } 要删除行之间的边距,需要删除卡周围的边距: .no-gutter-card > .card { margin: 0; } 演示:

如何在Bootstrap 4的
.card columns
容器中删除列和行之间的槽?

.card columns
容器使用并定义了一个

要删除柱之间的檐槽,需要删除柱间隙:

.no-gutter-card-deck.card-columns {
  column-gap: 0;
}
要删除行之间的边距,需要删除卡周围的边距:

.no-gutter-card > .card {
  margin: 0;
}
演示: