Computer >> Computer tutorials >  >> Programming >> CSS

Set the width, line style and color properties for an outline in a single statement with CSS


The outline property is a shorthand property that allows you to specify values for multiple properties such as width, line style, and color of the outline.

Example

<html>
   <head>
   </head>
   <body>
      <p style = "outline:thin solid green;">
         This text is having thin solid freen outline.
      </p>
      <br />
      <p style = "outline:thick dashed #009900;">
         This text is having thick dashed green outline.
      </p>
      <br />
      </p>
   </body>
</html>