实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
p 
6
{
7
border:1px solid red;
8
outline-style:dotted;
9
outline-color:#00ff00;
10
}
11
</style>
12
</head>
13
14
<body>
15
<p><b>Note:</b> IE8 supports the outline properties only if a !DOCTYPE is specified.</p>
16
</body>
17
</html>
18