gpt4 book ai didi

html - 如何为背景颜色划分 Bootstrap 容器?

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

我想划分用于更改背景的 Bootstrap 容器。我不想在容器内使用行和列。

我附上一张图片进行描述。 enter image description here

最佳答案

<div class="left_side">
<!-- Your content-->
</div>

<div class="right_side">
<!-- Your content-->
</div>

在样式表中

<style>
body
{
width:100%;
}
.left_side,.right_side
{
width:50%;
height:100px; /*Depends on your content make it as height:auto;*/
float:left;
}
.left_side
{
background-color:gray;
}
.right_side
{
background-color:white;
}
</style>

这是 JSfiddle 链接 https://jsfiddle.net/no0Lz0o7/

关于html - 如何为背景颜色划分 Bootstrap 容器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48744842/

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