演示代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" type="text/css" href="reset.css"/>
<style type="text/css">
#box{
width: 600px;
height: 300px;
background-color: aqua;
/* 内边距法: */
/* 水平居中 */
/* padding-left: 150px; */
/* 垂直居中: */
/* padding-top: 100px; */
overflow: hidden;
}
.wyzx{
width: 300px;
height: 100px;
background-color: #ff0000;
/* margin: 0 auto; */
/* 外边距法: 注意击穿*/
/* 水平居中 */
margin-left: 150px;
/* 垂直居中 */
margin-top: 100px;
}
</style>
</head>
<body>
<div id="box">
<div class="wyzx"></div>
</div>
</body>
</html>