CSS3 的 border-image 属性可以让我们使用图片来替代传统的边框,它可以让我们创建出更加丰富多彩的边框效果。
border-image 属性是一个复合属性,它由四个子属性组成:border-image-source、border-image-slice、border-image-width 和 border-image-outset。
border-image: source slice width outset;
其中,border-image-source 是必须的,它用于指定要使用的图片。而 border-image-slice 用于指定图片分割的位置,可以是一个数字或者是一个关键字。如果使用数字,则表示将图片水平和垂直方向上都分割成相同大小的区块。如果使用关键字,则表示将图片水平方向上分割成不同大小的区块(top、right、bottom 和 left)。
border-image: url(images/border.png) 30 30 round;
而 border-image-width 用于控制边框的宽度(也就是说可以将原本 1px 的边框扩大到 10px 或者 20px 等等)。最后 border-image-outset 用于设置图片在边界之外的位置。
border: 10px solid; border-image: url(images/border.png) 30 30 round;
此外还有一个 repeat 关键字可以用来重复显示图片(stretch 默认情况下会将图片伸展开来适应被应用元素的大小)。例如 repeat 是水平方向上重复显示图片 repeat ;repeat y 是垂直方向上重复显示图片 repeat ;repeat xy 是水平方向上和垂直方向上都重复显示图片 repeat 。
border: 10px solid; border-image: url(images/border.png) 30 30 stretch; //运術不正常// //运術不正常// //运術不正常// //运術不正常// //运術不正常// //运術不正常// //运術不正常// //运術不正常// //运術不正常// //运術不正常// //运術不正常// //运術不正常// //运術不正常// border: 10px solid; border image: url(images/boder.png) 30 30 repeat xy;
CSS 参考手册
设置 border-image-outset 属性:
div
{
border-image-source: url(border.png);
border-image-outset: 30 30;
}
属性 | |||||
---|---|---|---|---|---|
border-image-outset | 15.0 | 11.0 | 15.0 | 6.0 | 15.0 |
Opera 不支持 border-image-outset 属性。
Internet Explorer 10 以及更早的版本不支持 border-image-outset 属性。
Safari 5 以及更早的版本不支持 border-image-outset 属性。
请参阅 border-image 属性。
border-image-outset 属性规定边框图像超过边框盒的量。
默认值: | 0 |
---|---|
继承性: | no |
版本: | CSS3 |
JavaScript 语法: | object.style.borderImageOutset="30 30" |
border-image-outset: length|number;
注释:border-image-outset 属性规定边框图像超出边框盒的量。在上、右、下、左侧。如果忽略第四个值,则与第二个值相同。如果省略第三个值,则与第一个值相同。如果省略第二个值,则与第一个值相同。不允许任何负值作为 border-image-outset 值。
值 | 描述 |
---|---|
length | |
number | 代表对应的 border-width 的倍数。 |
CSS3 教程:CSS3 边框
CSS 参考手册
CSS border-style 属性实例设置四个边框的样式:p{border-style:solid;}More examples at the bottom of this page.属性定义及使...
CSS element element 选择器完整CSS选择器参考手册定义和用法element element 称为嵌套选择器或后代选择器。它用于选择元素内部...
CSS 参考手册 实例规定允许 div 扩展为多行:div{display:box;box-orient:horizontal;box-lines:multiple;width:200px;}亲自试一...
CSS3 column-rule-style 属性实例指定列之间的样式规则:div{column-rule-style:dotted;-moz-column-rule-style:dotted; -webkit...
CSS list-style 属性实例在一个声明中指定所有列表属性:ul{list-style:square url("sqpurple.gif");}属性定义及使用说明list-st...