ใช้ รูปแบบเส้นขอบ คุณสมบัติที่มีค่าร่องเพื่อกำหนดเส้นขอบตามที่แกะสลักไว้ในหน้า คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน 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>