如何在 JavaScript DOM 中的一个声明中设置所有边框底部属性?
htmljavascriptprogramming scripts
要在 JavaScript 中的一个声明中设置边框底部属性,请使用 borderBottom 属性。它允许您设置 border-bottom-width、border-bottom-style 和 border-bottom-color。
示例
您可以尝试运行以下代码来了解如何设置边框底部属性 −
<!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.borderBottom = "thin dashed #000000"; } </script> </body> </html>