方法一
position: fixed;
z-index: 10;
width: 85%;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
方法二
position: fixed;
z-index: 10;
width: 85%;
top: 50%;
left: 50%;
margin-top:-弹框高度/2
方法三
使用js计算出 (屏幕高度 - 弹框高度)/2
弹框居中
最新推荐文章于 2024-03-17 23:37:02 发布