gpt4 book ai didi

css - 如何给 body 外的区域添加背景图片

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

您好,我有一个普通的 html 网站,想在 body 标签之外的区域添加背景图片。

到目前为止,我的 css 中有这个

#class:before {
content: "";
display: inline-block;
width: 1px;
height: 2000px;
background-image:url(../images/Background.jpg);
background-repeat: repeat;
position: relative;
}

然后我在 body 上方添加了 div .. 显然在某处出错了,因为它不起作用。

感谢您的帮助。

最佳答案

我的建议是使用flex

我已经为您创建了一个 JSFiddle:enter link description here

HTML:

<body>
<div class="flex">
<div class="width-200 bg-red">
Put here your background
</div>
<div class="flex-1">
right panel
</div>
</div>
</body>

CSS:

.flex{
display: flex;
height:500px;
}

.flex-1{
flex:1;
padding-left:10px;
background-color:white;
}

.width-200{
width:200px;
}

.bg-red{
background-color:red;
}

关于css - 如何给 body 外的区域添加背景图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36171984/

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