使用 CSS 在两行之间设置边框
使用具有双值 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>
广告