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