使用CSS设置起点边框

要使用CSS设置开始边框,请使用带有值开始的 border-style属性。

示例

<html>
   <head>
   </head>
   <body>
      <p style = "border-width:4px; border-style:none;">
         This is a border with none width.
      </p>
      <p style = "border-width:4px; border-style:outset;">
         This is outset border.
      </p>
   </body>
</html>