CSS 设置外边距:最简方法及多种写法
- 使用 CSS 的 'margin' 属性分别设置上下左右的外边距值:
.box {
margin-top: 20px;
margin-left: 15px;
margin-right: 20px;
margin-bottom: 25px;
}
- 使用 CSS 的 'margin' 缩写属性设置上下左右的外边距值:
.box {
margin: 20px 20px 25px 15px;
}
最简书写方式是使用 'margin' 缩写属性,将上、右、下、左的值按顺序写入即可。
原文地址: https://www.cveoy.top/t/topic/lCDY 著作权归作者所有。请勿转载和采集!