gpt4 book ai didi

html - 无论我尝试什么,bootstrap 列都不会在它们之间创建空格,这是我的 html 结构吗?

转载 作者:行者123 更新时间:2023-11-28 04:15:00 24 4
gpt4 key购买 nike

我搜索了几乎所有关于 bootstrap 列间距的问题,但似乎没有任何效果。我认为这可能是我构建 html/css 的方式的一个简单的菜鸟错误,但我似乎无法弄清楚。

我之前曾多次使用 bootstrap,但使用的是主题,这是我第一次,但只使用了一个简单的 bootstrap 导航栏模板,里面没有其他任何内容。

.img-container{
position: relative;
display: inline-block;
}
.img-container .overlay{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.1);
}
.img-container:hover .overlay{
display: block;
background-color: rgba(0,0,0,0.6);
}
.img-container .overlay .services-caption{
color: #fff;
font-size: 100px;
position: absolute;
top: 25%;
left: 20%;
}
<!--Services-->
<section class="services">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="img-container">
<img src="images/services/shop.jpg" alt="...">
<div class="overlay">
<span class="services-caption">Shop</span>
</div>
</div>
</div>
<div class="col-md-4">
<div class="img-container">
<img src="images/services/shop.jpg" alt="...">
<div class="overlay">
<span class="services-caption">Shop</span>
</div>
</div>
</div>
<div class="col-md-4">
<div class="img-container">
<img src="images/services/shop.jpg" alt="...">
<div class="overlay">
<span class="services-caption">Shop</span>
</div>
</div>
</div>
</div>
</div>
</section>

最佳答案

添加 Bootstrap col-md-offset-* 类以实现列之间的间距。

<div class="col-md-4 col-md-offset-1">  

以上代码将创建 1 列大小的间隙。

关于html - 无论我尝试什么,bootstrap 列都不会在它们之间创建空格,这是我的 html 结构吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42523083/

24 4 0
文章推荐: javascript - 如何在 VS Code 中启用智能感知
文章推荐: jquery - 当页面上只有一些元素可用时,如何使用 jQuery 添加类?
文章推荐: javascript - 如何单击内容可编辑 div,然后单击跨度保留焦点
文章推荐: javascript - 这是删除
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com