gpt4 book ai didi

html - 当绝对的 child 时 Bootstrap 容器不居中

转载 作者:行者123 更新时间:2023-11-28 16:32:02 26 4
gpt4 key购买 nike

我有一个带有 position: absolute; 的父 div,这意味着我的子 div Bootstrap class="container" 不会 float 在页面中央相反,它只是位于左侧。我希望容器类按其应有的方式运行,在本例中将我的内容居中。

<section id="portfolio">
<div class="container">
Content
</div>
</section>

/*display content below the fold*/
#portfolio{
position: absolute;
top:120%;
}

最佳答案

width:100% 添加到您的#portfolio CSS 选择器:

/*display content below the fold*/
#portfolio{
width: 100%;
position: absolute;
top:120%;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"/>

<section id="portfolio">
<div class="container">
Content
</div>
</section>

上面的代码片段将使容器在#portfolio 中居中,而不使文本居中。默认情况下,Bootstrap 3 容器是固定宽度的,并使用 margin-left: auto;margin-right: auto 在它们的父容器中居中。如果您还想将容器中的文本居中,您可以添加 text-align: center

关于html - 当绝对的 child 时 Bootstrap 容器不居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35302138/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com