gpt4 book ai didi

html - 如何在两种颜色的 Bootstrap 中拆分屏幕

转载 作者:太空宇宙 更新时间:2023-11-04 06:46:43 26 4
gpt4 key购买 nike

您好,我有一个 Angular 组件,需要使用 bootstrap 4 将屏幕分成两种颜色...但我有这个: enter image description here

问题是在右侧,黑框没有占据所有的空间...有一个空白,即黑色没有占据所有应该占据的空间..

主页.html:

<div class="container">
<div class="row">
<div class="col-6 col-lg-6 background">
<p class="p-style">text</p>
</div>
<div class="col-6 col-lg-6 background2">
<p class="p-style">text</p>
</div>
</div>
</div>

主页.css:

.container {
width: 100%;
margin:0px !important;
padding: 0px !important;
}
.row {
display: -ms-flexbox;
display: -webkit-box;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: 0px !important;
margin-left: 0px !important;
}

.background {
width: 100%;
height: 100vh;
background-color: rgb(0, 121, 175);
background-size: cover;
color: rgb(67, 67, 67);
text-align: center;
}

.background2 {
width: 100%;
height: 100vh;
background-color: black;
background-size: cover;
color: rgb(67, 67, 67);
text-align: center;
}
.p-style{
font-size: 20px;
color:white;
font-weight: bold;
margin:auto;
}

我的问题是如何使用 bootstrap 将屏幕对称地分成两部分?

谢谢!

最佳答案

container 类指定了最大宽度。因此,如果您取消设置,它会正常工作。

.container {
width: 100%;
margin:0px !important;
padding: 0px !important;
max-width: unset;
}

关于html - 如何在两种颜色的 Bootstrap 中拆分屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53229383/

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