border-image-outset 属性规定边框图像超出边框盒的量。
注意:border-image-outset 属性规定边框图像超出边框盒的量。在上、右、下、左侧。如果忽略第四个值,则与第二个值相同。如果省略第三个值,则与第一个值相同。如果省略第二个值,则与第一个值相同。不允许任何负值作为 border-image-outset 值。
border-image-outset: length|number;
值 | 说明 |
length | 设置边框图像与边框(border-image)的距离,默认为0。 |
number | 代表相应的 border-width 的倍数 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
<style>
div {
width: 299px;
border: 100px solid transparent;
border-image: url(http://bbs.fishc.com//template/damei_z14/image/logo.png);
border-image-outset:1px 1px 1px;
}
</style>
</head>
<body>
<div>
<b>Note:</b> Internet Explorer 10 及其更早版本不支持 border-image-outset 属性。
</div>
</body>
</html>
表格中的数字表示支持该属性的第一个浏览器版本号。
Safari | Chrome | FireFox | IE |
6.0 | 3.0 | 4.0 | 9.0 |