codecamp

CSS border-left-width 属性

CSS border-left-width 属性

实例

设置左边框的宽度:

p
{
border-style:solid;
border-left-width:15px;
}

尝试一下 »

属性定义及使用说明

border-left-width 属性设置元素的左边框的宽度。

只有当边框样式不是 none 时才起作用。如果边框样式是 none,边框宽度实际上会重置为 0。不允许指定负长度值。

注意:请始终在 border-left-width 属性之前声明 border-style 属性。元素只有在获得边框之后,才能改变其边框的宽度。

默认值: medium
继承性: no
版本: CSS1
JavaScript 语法: object.style.borderLeftWidth="thick"


浏览器支持

表格中的数字表示支持该属性的第一个浏览器版本号。

属性          
border-left-width 1.0 4.0 1.0 1.0 3.5

属性值

描述
thin定义细的左边框。
medium默认值。定义中等的左边框。
thick定义粗的左边框。
length允许您自定义左边框的宽度。
inherit规定应该从父元素继承边框宽度。


相关文章

CSS 教程: CSS Border

CSS 参考手册: border-left 属性

CSS border-left-style 属性
CSS3 border-image-slice 属性
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

CSS属性

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }