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

เปลี่ยนสีขอบบนด้วย CSS


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>