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

元素水平垂直居中

时间:2017-09-13 09:49:51      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:doctype   meta   head   垂直   transform   top   round   auto   flex   

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
div{
position: absolute;

background: red;

/*
width:200px;
height:300px;
left:0;
top:0;
right:0;
bottom:0;
margin:auto; */

 

/* width:200px;
height:300px;
left:50%;
top:50%;
margin-left:-100px;
margin-top:-150px; */

/* width:30%;
height:50%;
left:50%;
top:50%;
transform:translateX(-50%) translateY(-50%); */

display:flex;
width:200px;
height:200px;
align-item:center;
justify-content:center;

}

</style>
</head>
<body>
<div></div>
</body>
</html>

元素水平垂直居中

标签:doctype   meta   head   垂直   transform   top   round   auto   flex   

原文地址:http://www.cnblogs.com/wifi-wangji/p/7513391.html

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