ใช้ 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>