CSS中border-left-style属性的用法

左边框样式属性更改左边框的样式。您可以尝试运行以下代码来实现 border-left-style属性

示例

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