代码示例:(标识:eg_csse_border-bottom-width)
<html>
<head>
<style type="text/css">
p.one 
{
border-style: solid;
border-bottom-width: 15px
}
p.two 
{
border-style: solid;
border-bottom-width: thin
}
</style>
</head>
<body>

<p class="one"><b>注释:</b>"border-bottom-width" 属性如果单独使用的话是不会起作用的。请首先使用 "border-style" 属性来设置边框。</p>
<p class="two">Some text. Some more text.</p>

</body>
</html>
运行结果: