标签导航:

使用 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>