透明背景上的非透明输入文本
我在 div 中有一个透明颜色的表单。我需要将输入文本设置为纯白色(不透明)。我该怎么做呢?
这是一些代码:
(不要介意背景,这只是我为示例选择的随机图像)
谢谢
I have a form inside a div with a transparent color. I'd need to have the input texts plain white (non transparent). How can I do it?
Here's some code:
(don't mind the background, it's just a random image I picked for the example)
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
@卡洛;可能您必须使用 css3
rgba
颜色作为背景透明度,这不会影响 div 子元素。对于 IE 使用过滤器,
您可以从这里生成 rgba 过滤器 http: //kimili.com/journal/rgba-hsla-css-generator-for-internet-explorer/
@carlo; may be you have to use use css3
rgba
color for your background transparency which is not effect div child elements.for IE use filter
you can generate your rgba filter from here http://kimili.com/journal/rgba-hsla-css-generator-for-internet-explorer/
如果您使用:
opacity: .7
的 div,他的儿子将采用相同的属性。
您可以使用
rgba (255,255,255, .7)
http://jsfiddle.net/ 来解决d5Xuu/19/
If you use:
opacity: .7
of a div, his sons take the same property.
You can solve using
rgba (255,255,255, .7)
http://jsfiddle.net/d5Xuu/19/