用 CSS 将边框样式设置为脊状
若要将边框样式设置为脊状,请对outline-style 属性使用 ridge 值。在凹槽下,边框看起来仿佛是雕刻到页面上的。ridge 值与之相反。
示例
<html> <head> </head> <body> <p style = "outline-width:3px;outline-style:ridge;"> This text is having 3px ridge outline. </p> </body> </html>
广告
若要将边框样式设置为脊状,请对outline-style 属性使用 ridge 值。在凹槽下,边框看起来仿佛是雕刻到页面上的。ridge 值与之相反。
<html> <head> </head> <body> <p style = "outline-width:3px;outline-style:ridge;"> This text is having 3px ridge outline. </p> </body> </html>