gpt4 book ai didi

html - 背景图像重叠插入的图像

转载 作者:太空宇宙 更新时间:2023-11-03 18:22:20 25 4
gpt4 key购买 nike

我正在研究 HTML 和 CSS,并试图制作一个非常简单的“ build 中”页面。我把背景设为黑色,文字设为白色。我将文本放在我想要的位置,而不是试图在文本下方插入图像。我把图片放到了网站上,但不知何故它在我的背景后面?谁知道该怎么做?

这是我的 CSS 代码:

    .fullscreenDiv {
background-color: #000000;
width: 100%;
height: auto;
bottom: 0px;
top: 0px;
left: 0;
position: absolute;
background-attachment:fixed;
}
.center {
position: absolute;
width: 100px;
height: 50px;
top: 50%;
left: 50%;
margin-top: -75px;
margin-left: -190px;
white-space: nowrap;
font-family: Century Gothic;
font-size: 120%;
color: #FFFFFF;
}
.trademark {
position: absolute;
width: 100px;
height: 50px;
top: 50%;
left: 50%;
margin-top: 250px;
margin-left: 400px;
white-space: nowrap;
font-family: Century Gothic
font-size: 80%;
color: #FFFFFF;
}

还有我的 HTML:

<div class='fullscreenDiv'>
<div class="center">Our website is currently under construction.</div>
</div>

<div class='fullScreenDiv'>
<div class="trademark">@GameAdviser - Copyright 2014</div>
</div>

编辑:现在只是一个小问题,我让它工作放置我的图片,并将其上传到我的 FTP,现在当我进入网站时我看不到我的图片,只有一个带有“图片不可用”图片或其他任何图片的边框.看起来很奇怪,因为我之前有一张照片效果很好。

尝试将其从 png 更改为 jpeg,但没有任何区别。

最佳答案

你可以像这样使用z-index

z-index:199; // for the Element you want on top
z-index:-199; // for the Element you want at bottom

关于html - 背景图像重叠插入的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21576974/

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