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

CSS에서 text-decoration 속성 사용

<시간/>

text-decoration 속성은 텍스트에 밑줄, 밑줄 및 취소선을 표시하는 데 사용됩니다.

예시

다음 예제는 텍스트를 장식하는 방법을 보여줍니다. 가능한 값은 없음, 밑줄, 윗줄, 줄줄이, 깜박임입니다.

<html>
   <head>
   </head>
   <body>
      <p style = "text-decoration:underline;">
         This will be underlined
      </p>
      <p style = "text-decoration:line-through;">
         This will be striked through.
      </p>
      <p style = "text-decoration:overline;">
         This will have a over line.
      </p>
      <p style = "text-decoration:blink;">
         This text will have blinking effect
      </p>
   </body>
</html>