gpt4 book ai didi

css - 用CSS将一个div覆盖在另一个div上

转载 作者:行者123 更新时间:2023-11-27 22:34:34 26 4
gpt4 key购买 nike

我有一个包装器 div,其中设置了一些 css 属性。单击一个按钮时,我必须过度显示一些消息。

<div class="dvLanding">
<div class="popupArea">
<span class="VoteOnce">You can only vote once.</span> <a style="vertical-align: top">
<img alt="close" src="../../Images/error1-exit-button.png" /></a></div></div>
</div>

我的 CSS 类。

.dvVoteWrapper
{
background-color: #949494;
opacity: 0.5;
filter: Alpha(opacity=50);
display:none;
width: 1024px;
height: 768px;
position: absolute;
}

.popupArea
{
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}

.dvLanding
{
background-image: url(/Images/screen1-bg-logos.jpg);
background-repeat: no-repeat;
position: absolute;
width: 100%;
height: 100%;
}
.VoteOnce
{
font-family: Calibri regular;
font-size: 24pt;
background-image: url(/Images/error1-vote-once-bg.png);
background-repeat: no-repeat;
width:288px;
height:74px;
color: #000000;
}

我正在使用 jquery 删除 display:none 属性。应用此类时,它不会覆盖整个页面并且看起来失真。请建议如何做到这一点。为了更好地理解enter image description here我附上了屏幕截图

最佳答案

还有一个

HTML:

<div class="dvLanding">
<div class="dvVolunter"></div>
<div class="dvVote">
<br />
<br />
</div>
<div class="dvVoteWrapper"></div>
</div>
<div class="popupArea">
<span class="VoteOnce">You can only vote once.
<a class="closeButton">
<img alt="close" src="../../Images/error1-exit-button.png" />
</a>
</span>
</div>

CSS:

.dvLanding {
background-image: url(http://lorempixel.com/800/600);
position: absolute;
width: 100%;
height: 100%;
opacity: 0.5;
}
.popupArea {
background-color: yellow;
position: absolute;
top: 50%;
left: 50%;
margin-top: -30px;
margin-left: -180px;
}
.closeButton {
vertical-align: top;
font-size: 10pt;
}
.VoteOnce {
font-family: Calibri regular;
font-size: 24pt;
}

JSFiddle用于测试。

关于css - 用CSS将一个div覆盖在另一个div上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14831152/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com