使用 CSS 更改顶部边框的颜色

javascriptweb developmentfront end scripts

 border-top-color 可更改顶部边框的颜色。您可以尝试运行以下代码来实现 border-top-color 属性:

示例

<html>
   <head>
      <style>
         p.demo {
            border:3px solid;
            border-top-color:#FF0000;
         }
      </style>
   </head>
   <body>
      <p class = "demo">
         Example showing border top color property
      </p>
   </body>
</html>

相关文章