如何使用 JavaScript 在单个声明中设置所有轮廓属性?
如需在一个声明中设置所有轮廓属性,请使用 outline 属性。将设置以下属性:outline-width、outline-style 和 outline-color。
示例
你可以尝试运行以下代码以了解如何使用轮廓属性 −
<!DOCTYPE html> <html> <head> <style> #box { border: 2px dashed blue; } </style> </head> <body> <div id="box">This is a div.</div> <br> <button type="button" onclick="display()">Click to set Outline</button> <script> function display() { document.getElementById("box").style.outline = "5px solid red"; } </script> </body> </html>
广告