HTML/CSS:背景覆盖

发布于 2025-01-03 17:55:02 字数 638 浏览 1 评论 0 原文

我有一个位于页面中间的背景

。 在此之上我有一个
,里面有文本。

如果以全屏方式查看页面,一切看起来都很好。 但如果在小窗口中查看该页面,文本就会消失。

如何让文字始终位于最前面?

代码:

http://jsfiddle.net/w2T79/

图片:

“普通视图:”http://www.suckmypic.net/26632/83735f21.png

“小视图:”http://www.suckmypic.net/26633/7be8fc00.png

I have a background <div> that is positioned in the middle of the page.
Above this I have a <div> with a text inside.

If the page is viewed in fullscreen, everything seems fine.
But if the page is viewed in a small window, the text disappears.

How can I make the text always staying in the front?

Code:

http://jsfiddle.net/w2T79/

Images:

"normal view:" http://www.suckmypic.net/26632/83735f21.png

"small view:" http://www.suckmypic.net/26633/7be8fc00.png

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

此岸叶落 2025-01-10 17:55:02

给父级 div 一个 id(例如“容器”),然后将下面的代码添加到您的 CSS 中:

#container {
    position: relative;
}

.txt {
    position: relative;
    z-index: 99999;
}

也许您可以向我们提供您正在处理的页面的链接,因为在 jsFiddle 中只有“文本”可见,并且没有图像。

Give the parent-div an id ('container' for example), then add the code below to your CSS:

#container {
    position: relative;
}

.txt {
    position: relative;
    z-index: 99999;
}

Maybe you can provide us a link to the page you are working on, because in jsFiddle only 'text' is visible, and no image.

太阳公公是暖光 2025-01-10 17:55:02

这是因为您的 margin-top 为 70 px,并且上方的 div 消失在背景下。

执行 position:relativehigh z-index 即可得到您想要的

That's because you have a margin-top of 70 px and the upper div disappears under the backgroud.

Do a position: relative and an high z-index and you get what you want

狼性发作 2025-01-10 17:55:02

您可以通过将 position:relative;z-index:1000; 赋予

标记来实现这一点。
检查这里:
http://jsfiddle.net/w2T79/4/
希望你能以这种方式。

This you can achieve by giving position:relative;z-index:1000; to <p> tag.
Check here:
http://jsfiddle.net/w2T79/4/
Hope you want in this way.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文