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

จะตั้งค่าคุณสมบัติขอบบนทั้งหมดในการประกาศครั้งเดียวด้วย JavaScript ได้อย่างไร


ในการตั้งค่าคุณสมบัติขอบด้านบนทั้งหมดในการประกาศครั้งเดียว ให้ใช้ borderTop คุณสมบัติ. ด้วยคุณสมบัตินี้ คุณสามารถตั้งค่าคุณสมบัติ border-top-width, border-top-style และ border-top-color ได้

ตัวอย่าง

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

<!DOCTYPE html>
<html>
   <head>
      <style>
         #box {
            border: thick solid gray;
            width: 300px;
            height: 200px
         }
      </style>
   </head>
   <body>
      <div id="box">Demo Text</div>
      <br><br>
      <button type="button" onclick="display()">Change top border</button>
      <script>
         function display() {
            document.getElementById("box").style.borderTop = "thick solid #000000";
         }
      </script>
   </body>
</html>