当前位置: 首页 > 文档资料 > CSS 入门教程 >

outline

优质
小牛编辑
126浏览
2023-12-01

描述 (Description)

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

可能的值 (Possible Values)

  • 《outline-color》 - 属性outline-color的任何允许值。

  • 《outline-style》 - 属性大纲样式的任何允许值。

  • 《outline-width》 - 属性outline-width的任何允许值。

适用于 (Applies to)

所有HTML元素。

DOM语法 (DOM Syntax)

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

例子 (Example)

这是一个例子 -

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

这将产生以下结果 -