Notice
Recent Posts
Recent Comments
Link
«   2025/03   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

chapter11 : text 본문

WEB.CSS

chapter11 : text

GAWON 2023. 5. 18. 09:38
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
	h1{
		color: blue;
	}
	.cls-left{
		text-align: left;
	}
	.cls-center{
		text-align: center;
	}
	.cls-right{
		text-align: right;
	}
	span{
		text-align: right;
	}
</style>
</head>
<body>
	<h1>CSS TEXT</h1>
	<h1 class="cls-left">Left</h1>
	<h1 class="cls-center">Center</h1>
	<h1 class="cls-right">Right</h1>
	<span>Right</span>
</body>
</html>

'WEB.CSS' 카테고리의 다른 글

chapter13_visibility  (0) 2023.05.18
chapter12 : list  (0) 2023.05.18
chapter10 : box_model  (0) 2023.05.18
chapter09 : margin  (0) 2023.05.18
chapter08 : padding  (0) 2023.05.18