如何使用 JavaScript 在单条声明中设置所有的 outline 属性?


要在一份声明中设置所有 outline 属性,请使用 outline 属性。它设置以下属性:outline-width、outline-style 和 outline-color。

范例

你可以尝试运行以下代码来了解如何处理 outline 属性 −

实时演示

<!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>

更新于: 23-6 月-2020

93 浏览量

开启您的 事业

通过完成该课程获得认证

开始
广告