我目前使用的弹出窗口的工作示例如下:
它基于此解决方案: http: //blog.avtex.com/2012/01/26/cross-browser-css-only-modal-box/
HTML:
<div class="viewbox popupBoxWrap">
<div class="vertical-offset">
<div class="popupBox">
<form style="height:300px">
<table>
<tr><td>key</td><td>val</td></tr>
....
</table>
</form>
</div>
</div>
</div>
CSS:
.popupBoxWrap {
z-index:40001;
}
.vertical-offset { /* Fixed position to provide the vertical offset */
position:fixed;
top:5%;
width:100%;
z-index:40002; /* ensures box appears above overlay */
}
.popupBox { /* The actual box, centered in the fixed-position div */
width:300px; /* Whatever width you want the box to be */
position:relative;
margin:0 auto;
background-color:white;
padding:10px;
border:1px solid black;
}
.popupBox form {
overflow: auto;
}
但是正如您所看到的,此弹出窗口的高度设置为固定值300px
,我尝试将其设置为百分比,但结果是不可接受的。我至少需要将高度设置为窗口高度的百分比。知道如何完成这项任务吗?没有Javascript可以吗?