set border 似乎是雕刻在页面上
将 border-style 属性与 groove 值一起使用,可以将边框设置为雕刻在页面上。你可以尝试运行以下代码来实现 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>
广告