实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
p 
6
{
7
border-style:solid;
8
border-bottom-width:15px;
9
}
10
</style>
11
</head>
12
<body>
13
14
<p><b>Note:</b> The "border-bottom-width" property does not work if it is used alone. Use the "border-style" property to set the borders first.</p>
15
16
</body>
17
</html>
18