[CSS]盒子模型

盒子模型

需求一个大盒子500 一个小盒子 200 小盒子在大盒子居中

<style>
.box1{
        width: 500px;
        height: 500px;
        background: green;
        padding-top: 150px;
        padding-left: 150px;
        box-sizing: border-box;
    }
    .box2 {
        width: 200px;
        height: 200px;
        background: blue;
    }
</style>
<div class="box1">
    <div class="box2"></div>
</div>

posted @ 2020-02-23 20:11  LeoShi2020  阅读(122)  评论(0编辑  收藏  举报