如何一次用 JavaScript 设置所有四个边框圆角属性?
要在 JavaScript 中设置所有 border-radius 属性,请使用 borderRadius 属性。一次使用此属性设置 border-radius 属性。
示例
你可以尝试运行以下代码来学习如何设置所有四个边框圆角属性 -
<!DOCTYPE html> <html> <head> <style> #box { border: thick solid gray; width: 200px; height: 200px } </style> </head> <body> <div id="box">Demo Text</div> <br><br> <button type="button" onclick="display()">Add border radius</button> <script> function display() { document.getElementById("box").style.borderRadius = "20px"; } </script> </body> </html>
广告