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

 边框顶部宽度属性更改顶部边框的宽度。您可以尝试运行以下代码来实现border-top-wid th属性:

示例

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