发布网友 发布时间:2022-04-30 15:15
共1个回答
热心网友 时间:2022-05-12 00:08
Layout properties: border-bottom-style 下边框风格属性 该CSS属性用来设定下边框的风格。 值:<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}