使用 CSS 设置轮廓样式为凹槽
要将轮廓样式设置为凹槽,请使用 outline-style 属性,其值是凹槽。在凹槽下,该轮廓看上去就像雕刻在页面中一样。−
示例
<html> <head> </head> <body> <p style = "outline-width:3px;outline-style:groove;"> This text is having 3px groove outline. </p> </body> </html>
广告
要将轮廓样式设置为凹槽,请使用 outline-style 属性,其值是凹槽。在凹槽下,该轮廓看上去就像雕刻在页面中一样。−
<html> <head> </head> <body> <p style = "outline-width:3px;outline-style:groove;"> This text is having 3px groove outline. </p> </body> </html>