似乎雕刻在页面上的固定边框
使用带有 groove 值的border-style属性将边框设置为雕刻到页面中。您可以尝试运行以下代码来实现 border-style属性
示例
<html> <head> </head> <body> <p style = "border-width:4px; border-style:none;"> This is a border with none width. </p> <p style = "border-width:4px; border-style:groove;"> This is a border carved into the page. </p> </body> </html>
广告