outline-style 속성은 요소를 둘러싸는 선의 스타일을 지정합니다. 다음 값 중 하나를 사용할 수 있습니다. -
다음 코드를 실행하여 outline-style 속성 -
<html> <head> </head> <body> <p style = "outline-width:thin; outline-style:solid;"> This text is having thin solid outline. </p> <br /> <p style = "outline-width:thick; outline-style:dashed;"> This text is having thick dashed outline. </p> <br /> <p style = "outline-width:5px;outline-style:dotted;"> This text is having 5x dotted outline. </p> </body> </html>을 구현할 수 있습니다.
위 내용은 CSS 개요 스타일 속성의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!