实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style> 
5
div {
6
    background-color: lightgrey;
7
    border: 30px solid transparent;
8
    border-image: url('/upload/love/border.png');
9
    border-image-slice: 30 30 30 30;
10
    border-image-width: 1 1 1 1;
11
    border-image-outset: 0;
12
    border-image-repeat: stretch;
13
}
14
</style>
15
</head>
16
<body>
17
18
<div id="main">
19
<p>
20
 DIV 使用图像边框。
21
</p>
22
</div>
23
24
<p>点击 “点我” 按钮来设置 borderImageRepeat 属性的值为 "round"。</p>
25
26
<button onclick="myFunction()">点我</button>
27
28
<script>
29
function myFunction() {
30
    document.getElementById("main").style.borderImageRepeat = "round";
31
}
32
</script>
33
34
<p><b>注意: </b>Internet Explorer 10, Opera 12, 和 Safari 5 不支持 border-image-repeat 属性。</p>
35
36
</body>
37
</html>
38