CSS 텍스트 장식

    2018-03-10 11:20:04 작성

    text-decoration-line

    text-decoration-line: none|underline|overline|line-through|initial|inherit;

    텍스트 장식 종류를 지정합니다.



    text-decoration-color

    text-decoration-color: color|initial|inherit;

    텍스트 장식 색상을 지정합니다.
    기본값 : black



    text-decoration-style

    text-decoration-style: solid|double|dotted|dashed|wavy|initial|inherit;

    텍스트 장식 모양을 지정합니다.

    설명
    solid 기본값, 실선 This is some text.
    double 이중 실선 This is some text.
    dotted 점선 This is some text.
    dashed 대쉬 This is some text.
    wavy 물결 This is some text.



    text-decoration

    text-decoration: text-decoration-line|text-decoration-color|text-decoration-style|initial|inherit;

    위에 적용되는 텍스트 장식 속성들을 일괄 적용합니다.
    Edge(IE)는 text-decoration 속성에 종류의 값중 하나만 적용이 가능합니다.