如何在 JavaScript 中使用一次声明来设置所有 border-top 属性?
若要在一个声明中设置所有 border-top 属性,请使用 borderTop 属性。使用该属性,可以设置 border-top-width、border-top-style 和 border-top-color 属性。
示例
可以尝试运行以下代码,以了解如何在 JavaScript 中使用 border-top 属性 -
<!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>
广告