有没有办法像模态那样在同一个阴影中显示div?
我有一个模态。当模态出现时,我还想在左角显示包含消息的DIV
。
这个DIV
应该出现在模态的前面,但它不会出现。
我尝试了以下但没有成功。
.div{
z-index:9999;
position:absolute;
}
注意我使用lightbox渲染包含图像的模态。
答案 0 :(得分:2)
Z-index和位置应该有效,试试这个。
.div{
z-index: 9999;
position: absolute;
background-color: white; /* just to see if the div is there */
left: 0;
top: 0;
}