x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
p.one {
7
border: 1px solid red;
8
outline-style: solid;
9
outline-width: thin;
10
}
11
12
p.two {
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>注意:</b> 如果只有一个 !DOCTYPE 指定 IE8 支持 outline 属性。</p>
25
</body>
26
</html>