透明背景,不透明元素

发布于 2024-12-11 20:17:14 字数 307 浏览 0 评论 0原文

我希望在 body 上有一个图像背景,在主 div 上有一个半透明背景,以便可以透过它看到图像,但有阴影。然而,最简单的方法

body {
  background-image: ...
}

#main {
  background-color: #999;
  opacity: 0.9
}

也会使 #main 中的所有内容都变得不透明,例如任何包含的 img

你如何做到我所描述的?

谢谢

I want to have an image background on body and a semitransparent background on main div, so that the image can be seen through it, but shaded. However, the easiest

body {
  background-image: ...
}

#main {
  background-color: #999;
  opacity: 0.9
}

will also make everything within #main to be opaque as well, such as any contained img.

How do you do what I describe?

Thanks

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

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

发布评论

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

评论(3

予囚 2024-12-18 20:17:14

rgba 可以帮助你,但并不是所有浏览器都支持它

rgba(a,b,c,d), where a = red(0-255); b = green(0-255); c = blue(0-255), d = alpha opacity(0-1)

所以如果你想要 50% 的红色背景,你应该使用

背景:rgba(255,0,0,0.5);

rgba helps you, but it is not supported by all browsers

usage:

rgba(a,b,c,d), where a = red(0-255); b = green(0-255); c = blue(0-255), d = alpha opacity(0-1)

so if you want a 50% red background, you should use

background: rgba(255,0,0,0.5);

套路撩心 2024-12-18 20:17:14

如果您的项目可以使用 CSS3,则可以使用 rgba()

#main {
  background-color: rgba(0, 0, 0, .5)
}

语法为 rgba(Red, Green, Blue, Alpha)。这将使#main 的背景透明,但内容不透明。

这是小提琴: http://jsfiddle.net/neilheinrich/FwxRX/

If you can use CSS3 for your project you can use rgba()

#main {
  background-color: rgba(0, 0, 0, .5)
}

The syntax is rgba(Red, Green, Blue, Alpha). This will make the background of #main transparent but not the content.

Here is fiddle: http://jsfiddle.net/neilheinrich/FwxRX/

-残月青衣踏尘吟 2024-12-18 20:17:14

如果您创建一个半透明的 png 文件,大小为几个像素,并且颜色与您想要的颜色相同,然后将其添加为 main 的背景图像,您应该会得到所需的结果。

If you create a semi transparent png file a couple of pixels large and in the colour you are after then add that as the background image of main you should get the desired result.

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