标签: css background transparency rgba
如何使白色容器背景透明,就像here
背景图片显示通过而不受容器的不透明度代码的影响?
容器似乎是css中的content-size:#fff;
content-size:#fff;
答案 0 :(得分:1)
使用RGBA
<style> .content-size { background-color: rgba(255,255,255, 0.5); } </style>
答案 1 :(得分:0)
假设我理解正确,您希望将背景修改为透明而不使所有子项都透明。例如。你不想做opacity: 0;
opacity: 0;
而是使用透明背景色。
.content-size { background-color: transparent !important; }