테두리 스타일 사용 그루브 값이 있는 속성을 사용하여 페이지에 새겨진 테두리를 설정합니다. 다음 코드를 실행하여 테두리 스타일을 구현할 수 있습니다. 속성:
예시
<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>