盒子模型
需求一个大盒子500 一个小盒子 200 小盒子在大盒子居中
<style>
.box1{
500px;
height: 500px;
background: green;
padding-top: 150px;
padding-left: 150px;
box-sizing: border-box;
}
.box2 {
200px;
height: 200px;
background: blue;
}
</style>
<div class="box1">
<div class="box2"></div>
</div>