ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
## border-bottom-style 属性 ### 属性定义及使用说明 border-bottom-style属性设置元素底部边框样式。 JavaScript 语法:object&nbsp;object.style.borderBottomStyle="dotted" ## 属性值 | 值 | 说明 | | :-- | :-- | | none | 指定无边框 | | hidden | 与"none" 相同。不过应用于表时除外,对于表,hidden 用于解决边框冲突。 | | dotted | 指定点状边框 | | dashed | 指定虚线边框 | | solid | 指定实线边框 | | double | 指定一个双边框 | | groove | 定义双线。双线的宽度等于 border-width 的值 | | ridge | 定义三维菱形边框。其效果取决于 border-color 的值 | | inset | 定义三维凹边框。其效果取决于 border-color 的值 | | outset | 定义三维凸边框。其效果取决于 border-color 的值 | | inherit | 指定应该从父元素继承边框样式 | * * * ## 实例 ``` <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>W3Cschool教程(w3cschool.cn)</title> <style> p {border-style:solid;} p.none {border-bottom-style:none;} p.dotted {border-bottom-style:dotted;} p.dashed {border-bottom-style:dashed;} p.solid {border-bottom-style:solid;} p.double {border-bottom-style:double;} p.groove {border-bottom-style:groove;} p.ridge {border-bottom-style:ridge;} p.inset {border-bottom-style:inset;} p.outset {border-bottom-style:outset;} </style> </head> <body> <p class="none">No bottom border.</p> <p class="dotted">A dotted bottom border.</p> <p class="dashed">A dashed bottom border.</p> <p class="solid">A solid bottom border.</p> <p class="double">A double bottom border.</p> <p class="groove">A groove bottom border.</p> <p class="ridge">A ridge bottom border.</p> <p class="inset">An inset bottom border.</p> <p class="outset">An outset bottom border.</p> </body> </html> ```