实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
p.one 
6
{
7
border-style:solid;
8
border-width:5px;
9
}
10
p.two 
11
{
12
border-style:solid;
13
border-width:medium;
14
}
15
p.three
16
{
17
border-style:solid;
18
border-width:1px;
19
}
20
</style>
21
</head>
22
23
<body>
24
<p class="one">Some text.</p>
25
<p class="two">Some text.</p>
26
<p class="three">Some text.</p>
27
<p><b>Note:</b> The "border-width" property does not work if it is used alone. Use the "border-style" property to set the borders first.</p>
28
</body>
29
30
</html>
31