代码示例:(标识:css_border_bottom)
<!DOCTYPE html>
<html>
<head>
<style>
p {
  border-bottom: 6px solid red;
  background-color: lightgrey;
}
</style>
</head>
<body>

<h1>border-bottom 属性</h1>

<p>此属性是 border-bottom-width、border-bottom-style 以及 border-bottom-color 的简写属性。</p>

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