除了特定的div之外,我想设置页面的每个元素的样式。我相信这是完成的:不是,但我不确定。我这样做是为了使所有元素的不透明度为0.7,弹出窗口除外。
答案 0 :(得分:0)
这是我的替代消息:在网络前面有一个不透明度的图层,但在叠加层后面。
以下是一个示例:https://jsfiddle.net/j1jodsej/
HTML
<div id="overlaybg"></div>
<div id="overlay">
I'm the overlay
</div>
CSS
#content {
text-align: justify;
}
#overlaybg {
position: fixed;
z-index: 1;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(255,255,255,0.5);
}
#overlay {
position: fixed;
z-index: 2;
top: 30px;
background: #FFF;
text-align: center;
left: 50%;
width: 200px;
margin-left: -100px;
padding: 30px;
}
答案 1 :(得分:0)
你可以给它一个id / class,如no-opacity
然后在css opacity: 1 !important;
以下是一个例子:http://jsfiddle.net/Lez6kkgw/1/