gpt4 book ai didi

javascript - 如何在页面左侧添加背景色?

转载 作者:行者123 更新时间:2023-11-28 04:56:48 25 4
gpt4 key购买 nike

我想在页面左侧添加背景颜色。我有一个居中且宽度固定的主 div。我尝试了背景图片,但它对我不起作用,因为我在页面上有无限滚动。这是显示我想要实现的目标的图片:

enter image description here

这是我的方法:

<div class="row">
<div class="left"></div>
<div class="container">
my custom HTML code
</div>
</div>

CSS

.container {width: 1000px; margin: 0 auto}
.left {background-color: red; position: absolute; height: 100%; width:100%; top: 0px; left: -100%; }

最佳答案

Check out the fiddle here

HTML

<div class="row">
<div class="left">
your left code
</div>
<div class="container">
your custom HTML code
</div>
</div>

CSS

.container {
background-color: gray;
width: 80%;
margin: 0 auto;
float: left;
}

.left {
background-color: red;
float: left;
width: 20%;
}

关于javascript - 如何在页面左侧添加背景色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21439633/

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