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

[text] CSS - text-fill-color 속성 (비표준) - 텍스트글자색 (= 글자전경색 =text-fill-color속성 = 텍스트필컬러속성)

목차

  1. text-fill-color 예제 - 글자 전경색
  2. text-fill-color 정의
  3. text-fill-color 관련 주소

※ 별로 안 씀. ㅡㅡ;

 

text-fill-color 예제 - 글자 전경색


<style>

body {

  width: 100%;

  height: 100vh;

  display: flex;

  align-items: center;

  background-color: #141414;

}


h1 {

  font-size: 9vw;

  font-weight: 700;

  font-family: 'Rubik', sans-serif;

  flex: 1;

  position: relative;

  text-align: center;

  margin: 0;

  -webkit-text-fill-color: transparent;

  background-image: url("http://66.media.tumblr.com/9d5be60c175cdbe15e875fef01b9a66b/tumblr_ntz3mmEFFr1twd8ddo1_500.gif");

  background-size: cover;

  -webkit-background-clip: text;

  background-repeat: no-repeat;

}

 

</style>


<h1>Homzzang.com</h1>

결과보기


text-fill-color 정의

 

글자 전경색 지정.

 


 

1.

비표준. 접두어 -webkit- 붙여야 함.

 

2.

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

 

 

text-fill-color 관련 주소

 

mdn text-fill-color 강의

 


방문 감사합니다. (즐겨찾기 등록: 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