• 회원가입
  • 로그인
  • 구글아이디로 로그인

[text] CSS - text-decoration-style 속성 - 텍스트라인모양 (굵은선, 파선, 점선, 물결선 등) (= text-decoration-style속성 = 텍스트라인스타일속성)

목차
  1. text-decoration-style 예제 - 텍스트 라인 모양
  2. text-decoration-style 정의
  3. text-decoration-style 구문

 

text-decoration-style 예제 - 텍스트 라인 모양

 

<style>

div {margin-bottom:30px; font-size:30px;}


div.a {

  text-decoration-line: underline;

  text-decoration-style: solid;

}


div.b {

  text-decoration-line: underline;

  text-decoration-style: double;

}


div.c {

  text-decoration-line: underline;

  text-decoration-style: dotted;

}


div.d {

  text-decoration-line: underline;

  text-decoration-style: dashed;

}

div.e {

  text-decoration-line: underline;

  text-decoration-style: wavy;

}

</style>


<div class="a">solid - Homzzang.com</div>

<div class="b">double - Homzzang.com<</div>

<div class="c">dotted - Homzzang.com</div>

<div class="d">dashed - Homzzang.com<</div>

<div class="e">wave - Homzzang.com<</div>


결과보기

 

text-decoration-style 정의

 

텍스트 라인 모양 지정.
(예: 굵은선, 파선, 점선, 물결선 등)

 


 

1.

text-decoration-line 속성은 필수.

즉, text-decoration-line 정의되야 text-decoration-style 속성 사용 가능.

 

2.

text-decoration 속성으로 아래 3가지 속성을 한번에 정의 가능.
text-decoration-line (필수)

text-decoration-style

text-decoration-color

 

3.

기본값: solid

상속여부: X

애니효과: X

CSS버전: CSS3

JS구문: object.style.textDecorationStyle="wavy"

 

4.

IE 및 Safari 지원 X. 나머지 최신 브라우저는 모두 지원.

 

 

text-decoration-style 구문

 

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

 


[속성값]

 

solid

굵은선 (기본값)

double
2줄겹침선


dotted
점선 (= 점을 일정 간격으로 벌려놓은 선)

dashed
파선 (= 짧은 막대선을 일정 간격으로 벌려놓은 선)

 

wavy

물결선 (= 물결 모양의 구불구불한 선)

initial

이 속성의 기본값으로 설정.

inherit

부모요소의 속성값 상속.

 


 

방문 감사합니다. (즐겨찾기 등록: Ctrl + D)

분류 제목
text CSS - text-decoration-style 속성 - 텍스트라인모양 (굵은선, 파선, 점선, 물결선 등…
text CSS - text-decoration-color 속성 - 텍스트라인색깔 (= 텍스트데커레이션컬러속성, IE…
text CSS - writing-mode 속성 - 텍스트 방향 가로/세로 제어. (= 글쓰기 방향 = 쓰기 모드 제…
text CSS - overflow-wrap 속성 - 줄바꿈 위해 단어 쪼개기 (= overflow-wrap속성 = …
text CSS - text-underline-offset 속성 - 텍스트와 밑줄라인과의 간격 지정 (= text-u…
text CSS - text-decoration-thickness 속성 - 텍스트라인 두께 지정 (= text-dec…
text CSS - text-emphasis-color 속성 - 텍스트 강조마크의 색상 지정 (= text-empha…
text CSS - text-emphasis-position 속성 - 텍스트 강조마크 위치 지정 (= text-emp…
text CSS - text-emphasis-style 속성 - 텍스트 강조마크 모양 지정 (= text-emphas…
text CSS - text-orientation 속성 - 블락방향 수직모드에서 문자방향 지정 (= 텍스트방향 지정 …
text CSS - text-underline-position 속성 - 텍스트 언더라인 위치 지정 (= text-un…
2/2
목록
찾아주셔서 감사합니다. Since 2012