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

边框顶部风格的属性更改顶部边框的样式。您可以尝试运行以下代码来实现 border-top-style 属性:

示例

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