实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
p {border-style:solid;}
6
p.none {border-bottom-style:none;}
7
p.dotted {border-bottom-style:dotted;}
8
p.dashed {border-bottom-style:dashed;}
9
p.solid {border-bottom-style:solid;}
10
p.double {border-bottom-style:double;}
11
p.groove {border-bottom-style:groove;}
12
p.ridge {border-bottom-style:ridge;}
13
p.inset {border-bottom-style:inset;}
14
p.outset {border-bottom-style:outset;}
15
</style>
16
</head>
17
18
<body>
19
<p class="none">No bottom border.</p>
20
<p class="dotted">A dotted bottom border.</p>
21
<p class="dashed">A dashed bottom border.</p>
22
<p class="solid">A solid bottom border.</p>
23
<p class="double">A double bottom border.</p>
24
<p class="groove">A groove bottom border.</p>
25
<p class="ridge">A ridge bottom border.</p>
26
<p class="inset">An inset bottom border.</p>
27
<p class="outset">An outset bottom border.</p>
28
</body>
29
</html>
30