<!DOCTYPE html>
<html>
<head>
<title>居中</title>
<style type="text/css">
.parent{
width:100px;
height:80px;
/*父元素需设置position:relative/absolute/fixed;*/
position:relative;
background: #eee;
}
.children{
background:green;
/*子元素的宽高可以是具体值,也可以是百分比,也可以是auto*/
width:50px;
height:50px;
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
}
</style>
</head>
<body>
<div class="parent">
<div class="children">
</div>
</div>
</body>
</html>
截图如下:
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。