我正在处理一个 asp.net 页面,它有一个显示为覆盖(弹出)的 div。div的html是这样的:
<div class="darkenBg" id="popupBackground" style="display:none;"></div>
CSS在哪里:
.darkenBg {background: url(/images/blackBg.png); position:absolute; z-index:30; width:100%; height:100%; bottom:0px;} /*added this div after body*/
但弹出窗口似乎没有达到全高度。它转到页面的中间。我怎样才能让它整页高度。宽度没问题。
请建议