如何在 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>
广告