📅  最后修改于: 2023-12-03 15:33:07.831000             🧑  作者: Mango
No-Gutter Bootstrap 4 is a version of Bootstrap that removes the gutters (the space between columns) from the grid system. This allows for more control over your layout and can make for a more streamlined design.
To use No-Gutter Bootstrap 4 in your HTML project, first download the necessary files from the Bootstrap website. Then, include the CSS file in the head of your HTML document:
<head>
<link rel="stylesheet" href="path/to/bootstrap.min.css">
</head>
Next, include the necessary classes in your HTML structure. To create a No-Gutter row, add the class no-gutters
to the div
element:
<div class="row no-gutters">
<div class="col-sm-4">
Column 1
</div>
<div class="col-sm-4">
Column 2
</div>
<div class="col-sm-4">
Column 3
</div>
</div>
Note that you can still use all of the normal Bootstrap classes for column widths and offsets.
No-Gutter Bootstrap 4 is a useful tool for web developers looking for more control over their layouts. By removing the gutters from the grid system, you can create a streamlined design that looks great on any device.