CSS属性 - border-bottom-style 下边框风格属性

说明

该CSS属性用来设定下边框的风格。边框区域的定义,请参见 CSS 盒子模式 (Box Model)

值:<border-style> | inherit

可用值值的说明
none没有边框,无论边框宽度设为多大
dotted点线式边框
dashed破折线式边框
solid直线式边框
double双线式边框
groove槽线式边框
ridge脊线式边框
inset内嵌效果的边框
outset突起效果的边框

示例代码

.d1 {border-bottom-style:none}
.d2 {border-bottom-style:solid}
.d3 {border-bottom-style:double}
.d4 {border-bottom-style:dotted}

继承

适用于

所有元素