outline-style property specifies the style of the line surrounding the element. It can take one of the following values -
You can try running the following code to implement the outline-style attribute -
<html> <head> </head> <body> <p style = "outline-width:thin; outline-style:solid;"> This text is having thin solid outline. </p> <br /> <p style = "outline-width:thick; outline-style:dashed;"> This text is having thick dashed outline. </p> <br /> <p style = "outline-width:5px;outline-style:dotted;"> This text is having 5x dotted outline. </p> </body> </html>
The above is the detailed content of CSS outline style properties. For more information, please follow other related articles on the PHP Chinese website!