div盒子模型

<style type="text/css">

div{
300px;
height:300px;
background:green;
margin:10px;<!--盒子外边距 -->
border:20px solid red;<!-- 盒子的厚度,三元素:宽度,材质,颜色-->
padding:20px;<!-- 盒子内边距,即盒子内容到边框的距离-->
}
#text{
background:green;
}


</style>
</head>
<body>
<div id="test" class="g">
123
</div>

</body>

原文地址:https://www.cnblogs.com/wlhebut/p/6445960.html