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