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