Home > Article > Web Front-end > Set the width, line style, and color properties of an outline in a single statement using CSS
The outline property is a shorthand property that allows you to specify values for multiple properties of the outline, such as width, line style, and color.
<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>
The above is the detailed content of Set the width, line style, and color properties of an outline in a single statement using CSS. For more information, please follow other related articles on the PHP Chinese website!