目录

CSS border-left 属性


示例

设置不同元素左边框的样式:

h1 {
  border-left: 5px solid red;
}

h2 {
  border-left: 4px dotted blue;
}

div {
  border-left: double;
}
亲自试一试 »

定义和用法

这个border-leftproperty 是以下属性的简写属性(按以下顺序):

如果省略 border-left-color,则应用的颜色将是文本的颜色。

展示演示❯

默认值: 中等 无颜色
遗传:
可动画: 是的,查看各个属性阅读可动画的尝试一下
版本: CSS1
JavaScript 语法: 对象.style.borderLeft="3px dotted blue"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

Property
border-left 1.0 4.0 1.0 3.5 1.0


CSS 语法

border-left: border-width border-style border-color|initial|inherit;

属性值

Value Description Demo
border-left-width Optional. Specifies the width of the left border. Default value is "medium" Demo ❯
border-left-style Required. Specifies the style of the left border. Default value is "none" Demo ❯
border-left-color Optional. Specifies the color of the left border. Default value is the color of the text Demo ❯
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

相关页面

CSS教程:CSS 边框

HTML DOM 参考:borderLeft 属性