CSS 属性

描述

outline属性是一个简写属性,用于设置元素周围轮廓的宽度、颜色和样式。

属性值

  • <outline-color>: 属性outline-color的任何允许值。

  • <outline -style>: 属性outline-style的任何允许值。

  • <outline-width>: 属性outline-width的任何允许值。

适用范围

所有 HTML 元素。

DOM 语法

object.style.outline = "thin solid red"; 

示例

这里是示例 -

<html>
   <head>
   </head>   
   <body>
      <p style = "outline: thin solid red; padding: 10px">
         This text is having thin solid red outline.
      </p>
      <p style = "outline: thick dashed #009900; padding: 10px">
         This text is having thick dashed green outline.
      </p>
      <p style = "outline: 5px dotted rgb(13,33,232); padding: 10px">
         This text is having 5px dotted blue outline.
      </p>
   </body>
</html>