outline-width 속성은 윤곽선의 너비를 설정하는 데 사용됩니다. 해당 값은 border-width 속성과 마찬가지로 길이이거나 얇음, 중간, 두꺼운 값 중 하나여야 합니다.
<html> <head> </head> <body> <p style = "outline-width:thin; outline-style:solid;"> This text is having thin outline. </p> <br /> <p style = "outline-width:thick; outline-style:dashed;"> This text is having thick outline. </p> <br /> <p style = "outline-width:5px; outline-style:dotted;"> This text is having 5x outline. </p> </body> </html>
위 내용은 CSS를 사용하여 개요 너비 설정의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!