我希望有一个内部有图像的div,但div和背景完全透明,给人的印象是图像单独存在,div背景后面的元素出现。
我尝试过以多种方式使用rgba,例如background: rgba(204, 204, 204, 0.5);
但是当设置为完全透明时,所有这些都会在div上留下白色背景。
我该如何实现?
如何让红色按钮显示为正常,但能够看到白色部分背后的内容?
我的HTML就是这样:
<div id="transparent-background">
<img src="./images/ui/chat.gif" class="arrow-button"/>
</div>
谢谢,
答案 0 :(得分:2)
只需将此CSS用于DIV:
#transparent-background {
background: transparent;
}