CSS 边距可以放在元素的四个边框(上、下、左、右)中,或者作为内边距(填充)应用到元素内部。
.selector {
border-top: 1px;
border-bottom: 1px;
border-left: 1px;
border-right: 1px;
}
.selector {
padding-top: 1px;
padding-bottom: 1px;
padding-left: 1px;
padding-right: 1px;
}
或者可以创建一个内边距盒,通过设置内边距来实现元素的样式:
.selector {
padding-left: 1px;
padding-right: 1px;
/* 边框样式 */
border-left: 1px;
border-right: 1px;
/* 边框颜色 */
border-color: transparent transparent white;
/* 边框宽度 */
border-width: 1px;
border-style: solid;
/* 边框间距 */
border-top-width: 0;
border-bottom-width: 0;
}
领取专属 10元无门槛券
手把手带您无忧上云