垂直居中

*{

margin:0;

padding:0;

}

/*第一种方案*/

/*div{

width: 100px;

height: 100px;

border:1px solid blue;

position: absolute;

left: 50%;

top: 50%;

margin: -50px 0 0 -50px;

}*/

/*第二种方案

div{

width: 100px;

height: 100px;

border: 1px solid blue;

position: absolute;

left: 0;

top: 0;

right: 0;

bottom: 0;

margin:auto;

}*/

/*第三种方案

div{

position: fixed;

top: 50%;

left: 50%;

background: #000;

width: 50%;

height: 50%;

transform: translateX(-50%) translateY(-50%);

}*/


body

<div></div>

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容