使用 CSS 将轮廓样式设置为两条实线
要将轮廓样式设置为两条实线,请使用 CSS 中带有 double 值的 outline-style 属性
示例
<html> <head> </head> <body> <p style = "outline-width:7px;outline-style:double;"> This text is having 7px double outline. </p> </body> </html>
广告
要将轮廓样式设置为两条实线,请使用 CSS 中带有 double 值的 outline-style 属性
<html> <head> </head> <body> <p style = "outline-width:7px;outline-style:double;"> This text is having 7px double outline. </p> </body> </html>