[CSS]텍스트 관련 스타일 시트

suyeon·2022년 8월 25일
1

CSS

목록 보기
4/6
post-thumbnail
속성설명
text-indent길이, 퍼센트들여쓰기
text-alignleft, right, center문자열 정렬
line-heightnormal, 숫자, 길이, 퍼센트줄간격(행간격)
vertical-aligntop, bottom, middle수직 정렬
letter-spacingnormal, auto, 길이문자 간격(자간)
word-spacingnormal, auto, 길이단어 간격
white-spacingnormal, pre, nowrap빈칸 및 줄바꿈 처리
text-decorationnone, underline, line-through, blink문자열처리
text-transformnone, capitalize, uppercase, lowercase문자열 대소문자 지정

<style>
	H1{
		text-align : left;
		text-indent : 3cm;
	}

	P{
		text-decoration : overline;
		text-transform : uppercase;
		font-style : italic;
		font-size : 20pt;
	}
		
</style>

 </head>
 <body>

 <center>
	<h1>스타일시트 적용하기</h1>
	<br><hr>

	<p>
		텍스트 장식은 overline이고, 이텔릭체이며, <br>
		폰트의 크기는 20포인트입니다.
	</p>
 </center>
 
 </body>
</html>

profile
📖개발블로그📖

0개의 댓글