div盒子居中

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.box {
width: 200px;
height: 200px;
background-color: #f0f0f0;
/* 绝对定位,左边偏移宽度50%,顶偏移高度50% */
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%); /* 相对自己宽度x、y轴减去自己宽度高
度的一半 */
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>

上一篇:less


下一篇:CSS系列之盒子阴影(CSS3)