Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

การใช้คุณสมบัติ border-top-color ใน CSS


The border-top-color คุณสมบัติเปลี่ยนสีของขอบด้านบน

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน border-top-color คุณสมบัติ:

<html>
   <head>
      <style>
         p.demo {
            border:3px solid;
            border-top-color:#FF0000;
         }
      </style>
   </head>
   <body>
      <p class = "demo">
         Asia is a continent.
      </p>
   </body>
</html>