引导程序更改$ grid-gutter-width [英] Bootstrap change $grid-gutter-width

查看:75
本文介绍了引导程序更改$ grid-gutter-width的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Bootstraps网格系统,并且每列之间需要大约 2px 个空格.我已经尝试过Column-Gap,但是什么也没有.

I am using Bootstraps grid system and I need about a 2px space between each column. I've tried Column-Gap but nothing.

有人可以帮忙吗?

代码HTML:

<div class="container">
<div class="row">
<div class="col-md-3" id="one">
<h3>Pink</h3>

</div>
<div class="col-md-3" id="two">
<h3>Purple</h3>
</div>
<div class="col-md-3" id="three">
<h3>Green</h3>
</div>
<div class="col-md-3" id="four">
<h3>Orange</h3>
</div>
</div>
<div class="row2">
<div class="col-md-3" >
<h3>Things that are Pink</h3>
<p>Pigs</p>
<p>Barbie</p>
<p>Some Skins</p>
<p>Ham</p>
</div>
<div class="col-md-3" >
<h3>Things that are Purple</h3>
<p>Prince</p>
<p>Goths</p>
<p>Paint</p>
<p>Berries</p>
</div>
<div class="col-md-3" >
<h3>Things that are Green</h3>
<p>Grass</p>
<p>Peas</p>
<p>Leafs</p>
<p>Apple</p>
</div>
<div class="col-md-3" >
<h3>Things that are Orange</h3>
<p>Orange</p>
<p>Ice-Lolly</p>
<p>Essex</p>
<p>Carrots</p>
</div>
</div>
</div>
</body>
</html>

代码:CSS

body {
font-family: 'Roboto Mono', monospace;

}

@media screen and (min-width: 768px)
.jumbotron {
padding-top: 48px;
padding-bottom: 48px;
}

.jumbotron {
text-align: center;
}

.container {
text-align: center;
}

#one {
border: 5px solid pink;
border-radius: 20px;
background-color: pink;
color: white;
}

#two {
border: 5px solid purple;
border-radius: 20px;
background-color: purple;
color: white;
}

#three {
border: 5px solid green;
border-radius: 20px;
background-color: green;
color: white;
}

#four {
border: 5px solid orange;
border-radius: 20px;
background-color: orange;
color: white;
}

.row2 {
margin-top: 30px;
margin-right: -15px;
margin-left: -15px;
}

推荐答案

调整Bootstrap装订线宽度的快速指南

A quick guide to resizing Bootstrap’s gutter width

调整Bootstrap的装订线

一种更改Bootstrap默认装订线大小的简单方法.

A simple method of changing Bootstrap's default gutter size.

HTML

<div class="gutter-2 row">
 <div class="col-md-6"></div>
 <div class="col-md-6"></div>

`

CSS

.gutter-2.row {
    margin-right: -1px;
    margin-left: -1px;
  }
  .gutter-2 > [class^="col-"], .gutter-2 > [class^=" col-"] {
    padding-right: 1px;
    padding-left: 1px;
  }`

这篇关于引导程序更改$ grid-gutter-width的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆