作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有用于覆盖的 css 类的面板,其中包含一个不应该透明的 div
<asp:panel id="panelOverlay" runat="server" class="Overlay" visible="false">
<asp:panel id="panelPopUpPanel" runat="server" class="PopUpPanel" visible="false">
<asp:panel id="panelPopUpTitle" runat="server" style="width: 100%; height: 20px; text-align: right; ">
<asp:imagebutton id="cmdClosePopUp" runat="server" imageurl="~/pict/graphics/delete.png"></asp:imagebutton>
</asp:panel>
<div class="noOverlay">
<h4>This is the PopUp Window</h4>
<asp:Label runat="server" ID="codice"></asp:Label>
</div>
<div> </div>
</asp:panel>
</asp:panel>
我有这个CSS类
.Overlay {
position:fixed;
top:0px;
bottom:0px;
left:0px;
right:0px;
overflow:hidden;
padding:0;
margin:0;
background-color:#000;
filter:alpha(opacity=50);
opacity:0.5;
z-index:1000;
}
.noOverlay {
background-color:#ffffff;
filter:alpha(opacity=100);
opacity:1;
}
我无法设置 .noOverlay CSS 使其工作谢谢
最佳答案
.noOverlay
不是透明的,但它的父容器导致 .noOverlay
看起来好像也是透明的。
改用 rgba
,它允许您仅为该特定元素设置背景颜色和背景透明度:
body {background:green}
.demoBox {
background: #000;
padding: 20px;
}
.Overlay {
/* The last argument is the transparency from 0 to 1 */
background: rgba(0, 0, 0, .5);
color:#fff;
}
.noOverlay {
background: rgba(255, 255, 255, 1);
color:#000;
}
<div class="demoBox Overlay">
I am a transparent div
<div class="demoBox noOverlay">I am not a transparent div</div>
</div>
正如您将在此处看到的,.noOverlay
包含在 .Overlay
div 中,但是,只有 .Overlay
是透明的.
关于css overlay with a div without overlay,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31706088/
我是一名优秀的程序员,十分优秀!