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

จะกำหนดสีของเส้นขอบด้านล่างใน JavaScript DOM ได้อย่างไร


ในการตั้งค่าสีของเส้นขอบด้านล่างใน JavaScript ให้ใช้ borderBottomColor คุณสมบัติ. ช่วยให้คุณสามารถกำหนดสีเส้นขอบสำหรับด้านล่างของเส้นขอบได้

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อเรียนรู้วิธีกำหนดสีของเส้นขอบด้านล่าง −

<!DOCTYPE html>
<html>
   <head>
      <style>
         #box {
            border: 2px dashed blue;
            width: 120px;
            height: 120px;
         }
      </style>
   </head>
   <body>
      <button onclick="display()">Set border bottom color</button>
      <div id="box">
         <p>Demo Text</p>
         <p>Demo Text</p>
      </div>
      <script>
         function display() {
            document.getElementById("box").style.borderBottomColor = "yellow";
         }
      </script>
   </body>
</html>