©
本文檔使用 php中文網手册 發布
border-image:<' border-image-source '> || <' border-image-slice '> [ / <' border-image-width '> | / <' border-image-width '>? / <' border-image-outset '> ]? || <' border-image-repeat '>
默认值:看每个独立属性
适用于:看每个独立属性
继承性:无
动画性:看每个独立属性
计算值:看每个独立属性
<' border-image-source '>:
设置或检索对象的边框是否用图像定义样式或图像来源路径。
<' border-image-slice '>:
设置或检索对象的边框背景图的分割方式。
<' border-image-width '>:
设置或检索对象的边框厚度。
<' border-image-outset '>:
设置或检索对象的边框背景图的扩展。
<' border-image-repeat '>:
设置或检索对象的边框图像的平铺方式。
使用图像替代 <' border-style '> 去定义边框样式。当 <' border-image '> 为none
或图像不可见时,将会显示 <' border-style '> 所定义的边框样式效果。
示例:
如果例子中的图片不可见,或者未被加载,则会以 <' border '> 的定义呈现,如果图片载入成功,则以 <' border-image '> 的定义呈现。
对应的脚本特性为borderImage。
Values | IE | Firefox | Chrome | Safari | Opera | iOS Safari | Android Browser | Android Chrome |
---|---|---|---|---|---|---|---|---|
Basic Support | 6.0-10.0 | 2.0-3.0 | 4.0-14.0 -webkit- | 3.1-5.1 -webkit- | 15.0+ | 3.2-5.1 -webkit- | 2.1-4.3 -webkit- | 18.0+ |
11.0+ | 3.5-14.0 -moz- | 15.0 -webkit- | 6.0+ | 6.1+ | 4.4-4.4.4 | |||
15.0+ | 16.0+ |
<!DOCTYPE html> <html lang="zh-cmn-Hans"> <head> <meta charset="utf-8" /> <title>border-image_CSS参考手册_web前端开发参考手册系列</title> <meta name="author" content="Joy Du(飘零雾雨), dooyoe@gmail.com, www.doyoe.com" /> <style> .test { border-width: 2px 9px; border-style: solid; border-color: orange; border-image: url(skin/button.png) 2 9 fill repeat; } </style> </head> <body> <div class="test">用图片来做边框</div> </body> </html>
点击 "运行实例" 按钮查看在线实例