Adjust the Margin of an Element - zilongxuan001/LearnFreecode GitHub Wiki
元素的margin控制元素和边框和周围元素的空间距离。
在CSS中设置如下
<style>
.box {
border-style: solid;
border-color: black;
border-width: 5px;
text-align: center;
}
.green-box {
background-color: green;
padding: 20px;
margin: 20px;
}
</style>
在HTML中设置如下
<h5 class="box green-box">padding</h5>
Basic CSS: Adjust the Margin of an Element | Learn freeCodeCamp
2018-9-29 17:18:12