Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将元素的不透明度设置为 0。现在如果我这样做,元素的所有内容都将继承此属性。我不想要这个,我只希望背景在内容(例如文本)保持可见的情况下获得不透明度 0
有什么线索吗?
谢谢。
经过一番研究,我找到了一个简单的答案 -background-color: transparent;
background-color: transparent;
你可以设置背景颜色吗?
background-color: rgba(255,255,255,0.6);
opacity 属性应用于整个对象,您可以阅读它的规范。
应用于整个对象的统一不透明度设置。0.0(完全透明)到 1.0(完全不透明)范围之外的任何值都将被限制在该范围内。如果对象是一个容器元素,那么效果就好像容器元素的内容使用掩码与当前背景混合,其中掩码的每个像素的值为 。
您可以考虑使用rgba()颜色。
rgba()