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

Set outline style as two solid lines with CSS


To set the outline style as two solid lines, use the outline-style property with the value double

Example

<html>
   <head>
   </head>
   <body>
      <p style = "outline-width:7px;outline-style:double;">
         This text is having 7px double outline.
      </p>
   </body>
</html>