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