码迷,mamicode.com
首页 > 其他好文 > 详细

页面垂直居中

时间:2018-07-04 13:28:18      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:color   tran   fixed   pos   垂直居中   border   margin   orm   popup   

<div id="popup"></div>

 

需要定义heigh 和width

#popup
position:fixed
left:0
right:0
top:0
bottom:0
width:100px
height:100px
margin:auto
background:red
color:#fff

 

 

不需要定义高宽

#popup
position: fixed;
left: 50%;
top:50%;
background: rgba(0,0,0,.35);
padding: 10px;
border-radius: 5px;
transform: translate(-50%,-50%);
color:#fff

 

页面垂直居中

标签:color   tran   fixed   pos   垂直居中   border   margin   orm   popup   

原文地址:https://www.cnblogs.com/liuzhouyuan/p/9262582.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!