Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS로 윤곽선의 선 스타일 설정


개요 스타일 속성은 요소를 둘러싸는 선의 스타일을 지정합니다.

예시

다음 코드를 실행하여 개요 스타일을 구현할 수 있습니다. 속성 -

<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>