CSS

[CSS] text-decoration

ui-o 2025. 6. 13. 18:30
반응형

text-decoration

  • 글자를 꾸며주는 속성
  • 원하는 색이나, px로 선 굵기 조정 가능

선 모양

속성 설명
wavy 물결선
dotted 점선
dashed 파선

 선 위치

속성 설명
underline 아래
overline
line-through 중간
<p style="text-decoration:wavy underline red">Lorem.</p>
<p style="text-decoration:dotted underline overline tomato">Lorem 2</p>
<p style="text-decoration:dashed line-through blue 4px">Lorem 3s</p>

 

 


 

반응형