使用 CSS 在两条线之间设置边框
使用 double 值的 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:double;"> This is a border with two solid lines. </p> </body> </html>
广告