반응형
배경이미지가 텍스트 컬러로 적용되는 크롭 스타일의 텍스트 디자인 적용 예제입니다.
텍스트를 많이 입력하여 스크롤이 생기면 백그라운드 이미지를 고정시켜{background-attachment:fixed;} 텍스트만 스크롤되는 패럴랙스 스타일로도 적용해볼 수 있습니다.
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Anton&display=swap" rel="stylesheet">
<style>
* {
background:#818473;
width:100%;
text-align:center;
margin:0 auto;
}
.qoutes_contents {
width:700px;
margin: 1em auto;
text-align:center;
background:url(../tutorial/001textback/text-background.jpg);
background-size:cover;
background-clip: text;
-webkit-background-clip: text;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
color: transparent;
font-size: 6rem;
font-family: 'Anton', sans-serif;
text-transform: uppercase;
text-align: center;
letter-spacing:-0.01em;
line-height: 110%;
}
</style>
<div class="qoutes_contents">
People will throw stones at you.<br>
Don't throw them back.<br>
Collect them all and build an empire.
</div>
반응형
'HTML&CSS' 카테고리의 다른 글
[CSS] 웹사이트 사파리 브라우저에서 명조체로 보일 때 해결방법 (2) | 2021.09.18 |
---|---|
[cafe24 팁] 카페24 상단 띠배너 추가 설치 수정하기 (8) | 2021.08.10 |
position:absolute 가운데 정렬하는 방법 - div 가운데정렬 안될 때 (0) | 2020.09.02 |
[CSS] 이미지 흑백처리 (0) | 2020.08.28 |
[풀스택디자이너] 아톰 에디터 ftp 연결하기 (5) | 2020.03.18 |