实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
p.one
6
{
7
border:1px solid red;
8
outline-style:solid;
9
outline-width:thin;
10
}
11
p.two
12
{
13
border:1px solid red;
14
outline-style:dotted;
15
outline-width:3px;
16
}
17
</style>
18
</head>
19
<body>
20
21
<p class="one">This is some text in a paragraph.</p>
22
<p class="two">This is some text in a paragraph.</p>
23
24
<p><b>Note:</b> IE8 supports the outline properties only if a !DOCTYPE is 
25
specified.</p>
26
</body>
27
</html>
28