The outline-style property specifies the style of the line surrounding the element.
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 Using CSS to set the line style of an outline. For more information, please follow other related articles on the PHP Chinese website!