속성 property | 값 value |
text-decoration-line | underline | overline | line-through |
text-decoration-style | solid | double | dotted | dashed | wavy | inherit |
text-decoration-color | red | rgb(200,200,200) | rgba(200,200,200,.5) |
$(".tag_class").css("text-decoration-line", "line-through");
와 같이 jQuery로 다이나믹하게 변경할 수도 있다.