CSS로 시작 테두리를 설정하려면 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:outset;"> This is outset border. </p> </body> </html>