PHP前端开发

用CSS将轮廓样式设置为虚线

百变鹏仔 4周前 (09-20) #CSS
文章标签 虚线

要将轮廓样式设置为点线,请使用值为dottedoutline-style属性 − 

示例

<html>   <head>   </head>   <body>      <p style = "outline-width:7px;outline-style:dotted;">         This text is having 7px dotted outline.      </p>   </body></html>