codecamp

CSS3 border-image-width 属性

定义和用法

border-image-width 属性规定图像边框的宽度。

默认值: none
继承性: no
版本: CSS3
JavaScript 语法: object.style.borderImageWidth="30 30"

语法

border-image-width: number|%|auto;
注意:border-image -width的4个值指定用于把border图像区域分为九个部分。他们代表上,右,底部,左,两侧向内距离。如果第四个值被省略,它和第二个是相同的。如果也省略了第三个,它和第一个是相同的。如果也省略了第二个,它和第一个是相同的。负值是不允许的。
描述
number 代表对应的 border-width 的倍数。
% 参考边框图像区域的尺寸:区域的高度影响水平偏移,宽度影响垂直偏移。
auto 如果规定该属性,则宽度为对应的图像切片的固有宽度。

实例

规定图像边框的宽度:

div
{
border-image-source: url(border.png);
border-image-width: 30 30;
}

浏览器支持

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

属性
border-image-width 15.0 11.0 13.0 6.0 15.0

Opera 不支持 border-image-width 属性。

Internet Explorer 10 以及更早的版本不支持 border-image-width 属性。

Safari 5 以及更早的版本不支持 border-image-width 属性。

请参阅 border-image 属性。

相关页面

CSS3 教程:CSS3 边框


CSS3 border-image-source 属性
CSS border-left 属性
温馨提示
下载编程狮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; }