实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style> 
5
div
6
{
7
margin:20px;
8
width:150px; 
9
padding:10px;
10
height:70px;
11
border:2px solid black;
12
outline:2px solid red;
13
outline-offset:15px;
14
} 
15
</style>
16
</head>
17
<body>
18
19
<p><b>Note:</b> Internet Explorer does not support the outline-offset property.</p>
20
21
<div>This div has an outline border 15px outside the border edge.</div>
22
23
</body>
24
</html>
25