【发布时间】:2016-05-21 07:26:25
【问题描述】:
我已将主背景设置为透明,我将图像放在继承不透明度 0.4 的背景之上,我不希望这样。我希望它是 100%。我什至尝试过opacity 1.0 在这里不起作用是我的代码:
HTML:
<!-- Background -->
<img src="img/bg.jpg" id="bg" alt="">
<!-- The image -->
<div class = "row">
<div class = "logo">
<img src="img/logo.png" width="100%" height="141" id="logo" alt="Title" />
</div>
</div>
CSS:
//Background
#bg {
position: fixed;
top: 0;
left: 0;
opacity: 0.4;
width: 100%;
min-height: 100%;
}
//the image
#logo {
opacity : 1.0;!important;
}
【问题讨论】: