请首先提供您代码。 您可以使用no-gutters选项:Columns have horizontal padding to create the gutters between individual columns, however, you can remove the margin from rows and padding from columns with .no-gutters on the .row. https://getbootstrap.com/docs/4.0/layout/grid/
<div class="row no-gutters">
<div class="col-md-2">
// stuff here for this column
</div>
<div class="col-md-10">
// stuff here for columns
</div>
</div>
3条答案
按热度按时间wqlqzqxt1#
请首先提供您代码。
您可以使用
no-gutters
选项:Columns have horizontal padding to create the gutters between individual columns, however, you can remove the margin from rows and padding from columns with .no-gutters on the .row.
https://getbootstrap.com/docs/4.0/layout/grid/
或者:您必须查看添加空格(边距或填充)的属性(可能是col)
我在以前的项目中添加了这个,以减少所有列的空间
根据需要调整
55ooxyrt2#
如果从Bootstrap V4执行
scss
,则可以使用variable
更改装订线width
。如果你想改变
column
填充的某些部分。你应该添加自定义类,并这样做。HTML格式
CSS格式
cngwdvgl3#
您只需将.g-0添加到列中即可删除列之间的默认间距。
https://getbootstrap.com/docs/5.0/layout/gutters/#no-gutters