Để đặt đường viền ban đầu bằng CSS, hãy sử dụng border-style tài sản có giá trị ban đầu.
Ví dụ
<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:outset;"> This is outset border. </p> </body> </html>