将 <div> 元素的下边框宽度更改为 10px:
document.getElementById("myDiv").style.borderBottomWidth = "10px";
亲自试一试 »
下面有更多 "亲自试一试" 示例。
borderBottomWidth 属性设置或返回元素下边框的宽度。
表中的数字指定完全支持该属性的第一个浏览器版本。
Property | |||||
---|---|---|---|---|---|
borderBottomWidth | 1.0 | 4.0 | 1.0 | 1.0 | 3.5 |
返回 borderBottomWidth 属性:
object.style.borderBottomWidth
设置 borderBottomWidth 属性:
object.style.borderBottomWidth = "thin|medium|thick|
length|initial|inherit"
Value | Description |
---|---|
thin | Defines a thin border |
medium | Defines a medium border. This is default |
thick | Defines a thick border |
length | The width of the border in length units |
initial | Sets this property to its default value. Read about initial |
inherit | Inherits this property from its parent element. Read about inherit |
默认值: | 中等的 |
---|---|
返回值: | 一个 String,表示元素下边框的宽度 |
CSS版本 | CSS1 |
将 <div> 元素的下边框宽度更改为较细:
document.getElementById("myDiv").style.borderBottomWidth = "thin";
亲自试一试 »
CSS教程:CSS 边框
CSS 参考:边框底部宽度属性
HTML DOM 参考:边境属性
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!