我弹出一个包含ASP.NET表单的弹出窗口,单击链接“请求信息”,然后出现该表单。
但是,具有链接“请求信息”以触发弹出窗口的页面包含很多内容,因此需要滚动才能看到该链接。
div如果用户滚动阅读内容,则需要始终居中,否则,如果他们不滚动,弹出窗口仍将居中显示在屏幕上。
div
在div绝对定位,整个页面宽度960px与边距设置为0 auto。
960px
0 auto
如果div具有固定的宽度和高度,请使用:(如果width = 120px和height = 80px)
position: fixed; top: 50%; left: 50%; margin-left: -60px; /* negative half of the width */ margin-top: -40px; /* negative half of the height */