Home  >  Article  >  Web Front-end  >  CSS outline width property

CSS outline width property

WBOY
WBOYforward
2023-08-31 10:13:061070browse

CSS 轮廓宽度属性

outline-width property is used to set the width of the outline. Its value should be a length or one of thin, medium or thick values, just like the border-width property.

Example H2>
<html>
   <head>
   </head>
   <body>
      <p style = "outline-width:thin; outline-style:solid;">
         This text is having thin outline.
      </p>
      <br />
      <p style = "outline-width:thick; outline-style:dashed;">
         This text is having thick outline.
      </p>
      <br />
      <p style = "outline-width:5px; outline-style:dotted;">
         This text is having 5x outline.
      </p>
   </body>
</html>

The above is the detailed content of CSS outline width property. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete