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

[text] CSS - text-underline-offset 속성 - 텍스트와 밑줄라인과의 간격 지정 (= text-underline-offset속성 = 텍스트언더라인오프셋속성)

목차
  1. text-underline-offset 예제 - 텍스트와 밑줄라인과의 간격 지정
  2. text-underline-offset 정의
  3. text-underline-offset 구문
  4. text-underline-offset 예제 - 음수값 경우
  5. text-underline-offset 예제 - % 단위 경우

 

text-underline-offset 예제 - 텍스트와 밑줄라인과의 간격 지정

 

<style>

p {

    text-decoration-line: underline;

    text-underline-offset:20px;

}

</style>

 

<p>홈짱닷컴 Homzzang.com</p>

 

결과보기

 

text-underline-offset 정의

 

텍스트와 밑줄라인과의 간격 지정.

(= 텍스트 밑줄라인을 텍스트로부터 얼마 만큼 띄울지 지정.)

 


 

1. cf.

 

2.

IE 제외한 주요 최신브라우저 모두 지원.

 

3. MDN text-underline-offset 예제보기

https://developer.mozilla.org/en-US/docs/Web/CSS/text-underline-offset

 

 

text-underline-offset 구문

 

selector {text-underline-offset: auto|length|%|initial|inherit;}

 


[속성값]

 

auto

브라우저가 자동 지정. (기본값)

 

length

px, em, rem, cm 등 길이단위. (음수값 가능)

 

%

텍스트 사이즈(=세로길이)의 일정비율 의미.

 

initial

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

 

inherit

부모요소의 속성값을 상속.

 

 

text-underline-offset 예제 - 음수값 경우

 

<style>

p {

    text-decoration-line: underline;

    text-underline-offset:-6px;

}

</style>

 

<p>홈짱닷컴 Homzzang.com</p>

 

결과보기

 

text-underline-offset 예제 - % 단위 경우

 

<style>

p {

    font-size:1em;

    text-decoration-line: underline;

    text-underline-offset:50%;

}

</style>

 

<p>홈짱닷컴 Homzzang.com</p>

 

결과보기



분류 제목
scroll CSS - scroll-margin-block 속성 -
scroll CSS - scroll-margin-block-end 속성 -
scroll CSS - scroll-margin-block-start 속성 -
scroll CSS - scroll-margin-bottom 속성 -
scroll CSS - scroll-margin-inline 속성 -
scroll CSS - scroll-margin-inline-end 속성 -
scroll CSS - scroll-margin-inline-start 속성 -
scroll CSS - scroll-margin-left 속성 -
scroll CSS - scroll-margin-right 속성 -
scroll CSS - scroll-margin-top 속성 -
scroll CSS - scroll-padding 속성 -
scroll CSS - scroll-padding-block 속성 -
scroll CSS - scroll-padding-block-end 속성 -
scroll CSS - scroll-padding-block-start 속성 -
scroll CSS - scroll-padding-bottom 속성 -
scroll CSS - scroll-padding-inline 속성 -
scroll CSS - scroll-padding-inline-end 속성 -
scroll CSS - scroll-padding-inline-start 속성 -
scroll CSS - scroll-padding-left 속성 -
scroll CSS - scroll-padding-right 속성 -
24/25
목록
찾아주셔서 감사합니다. Since 2012