xxxxxxxxxx
<html>
<meta charset="utf-8">
<title>编程狮(w3cschool.cn)</title>
<style>
.parent{
margin:0 auto;
width:200px;
height:200px;
background-color:red;
}
.children {
width: 100px;
height: 100px;
padding: 50px;
background-color: black;
background-clip:content-box;/*居中的关键*/
</style>
<body>
<div class="parent">
<div class="children"></div>
</div>
</body>