Style borderLeft 属性
定义和用法
borderLeft 属性以速记形式设置或返回三个独立的左边框属性。
通过该属性,您可以设置/返回:
- border-left-width
- border-left-style
- border-left-color
浏览器支持
所有主要浏览器都支持 borderLeft 属性。
语法
返回 borderLeft 属性:
object.style.borderLeft
设置 borderLeft 属性:
object.style.borderLeft = "width style color|initial|inherit"
属性值
参数 | 描述 |
---|---|
width | 设置左边框的宽度。 |
style | 设置左边框的样式。 |
color | 设置左边框的颜色。 |
initial | 设置该属性为它的默认值。请参阅 initial |
inherit | 从父元素继承该属性。请参阅 inherit |
技术细节
默认值: | not specified |
---|---|
返回值: | 字符串,表示元素左边框的宽度、样式或颜色 |
CSS 版本 | CSS1 |
更多实例
实例
更改 div 元素左边框的宽度、样式和颜色:
document.getElementById("myDiv").style.borderLeft = "thin dotted red";
亲自试一试 »
相关页面
CSS 教程: CSS Border
CSS 参考手册: border-left 属性
HTML DOM 参考手册: border 属性
❮ Style 对象