CSS中border-bottom-width属性的使用

 底部边框宽度改变了下边框的宽度。您可以尝试运行以下代码来实现border-bottom-width属性:

示例

<html>
   <head>
   </head>
   <body>
      <p style = "border-bottom-width:6px;border-style:solid;">
         This is demo content.
      </p>
   </body>
</html>