gpt4 book ai didi

html - 背景图像覆盖页面上的文本

转载 作者:太空宇宙 更新时间:2023-11-04 12:33:42 24 4
gpt4 key购买 nike

背景图像覆盖了页面上的文本。任何帮助,将不胜感激。在我的主页上:

    #bg {
position: fixed;
top: 1em;
right: 30%;
bottom: 0;
left: 30%;
margin: 0 -600px;
background-size: cover;
}
<div id="bg">
<img src="http://placehold.it/600x150" width="100%" height="200%" alt="">
</div>

<h1> Welcome to the home page </h1>

最佳答案

您可以在 #bg 元素中使用 z-index: -1

    #bg {
position: fixed;
top: 1em;
right: 30%;
bottom: 0;
left: 30%;
margin: 0 -600px;
background-size: cover;
z-index: -1;
}

<div id="bg">
<img src="http://placehold.it/600x150" width="100%" height="200%" alt="">
</div>

<h1> Welcome to the home page </h1>

关于html - 背景图像覆盖页面上的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27439158/

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