bootstrap中的col的div总是有边距
时间: 2024-03-15 12:43:50 浏览: 89
bootstrap卡片排版教程.docx
Bootstrap 中的 col div 默认有一定的左右边距。如果你不想要这个边距,可以使用 Bootstrap 提供的 no-gutters 类。将 no-gutters 类应用于包含 col 的父级 div 中即可去除边距。例如:
```html
<div class="row no-gutters">
<div class="col">
<!-- Your content here -->
</div>
<div class="col">
<!-- Your content here -->
</div>
</div>
```
阅读全文