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