[CSS Selector] ::first-letter(첫글자 선택) ::first-line(첫 줄 선택)

CSS · 2020. 8. 6. 17:07
728x90

::first-letter

 

::first-letter은 첫 글자를 선택하는 선택자이다.

<style>
	.txt{font-size:30px; margin: 30px; text-align: center; width:100%; color:#444;}
	.txt::first-letter{font-size:50px; color:hotpink}
</style>

<body>
	<p class="txt">안녕하세요</p>
</body>

이렇게 첫글자만 적용이 되는 모습을 볼 수 있다.

 

::first-line

 

::first-line은 첫 줄을 선택하는 선택자이다.

 

<style>
.txt{font-size:20px; text-align: center; width:100%; color:#444}
.txt::first-line{color:chocolate; font-weight: bold;}
</style>

<body>
<p class="txt">Levup의 티스토리에 오신걸 환영합니다<br>
CSS 선택자에 대하여 공부해보겠습니다<br>
첫 글자 선택자와 첫 줄 선택자에 대한 내용입니다.</p>
</body>

 

이렇게 첫 줄에 적용된 모습을 볼 수 있다.

728x90
Copyright © Nana
levup