如何使用 JavaScript 为下边框设置样式?
若要设置下边框的样式,请使用 JavaScript borderBottomStyle 属性。它允许你添加下边框。
范例
你可以尝试运行以下代码,以设置下边框的样式 −
<!DOCTYPE html> <html> <body> <div id="box">Demo Text</div> <br> <button onclick="display()">Click to set style of bottom border</button> <script> function display() { document.getElementById("box").style.borderBottomStyle = "dashed"; } </script> </body> </html>
广告