Notice
Recent Posts
Recent Comments
Link
«   2024/07   »
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

chapter17 : clear 본문

WEB.CSS

chapter17 : clear

GAWON 2023. 5. 18. 09:41
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
	div{
		width: 200px;
		height: 200px;
		border: 1px solid black;
		text-align: center;
		margin: 10px;
	}
</style>
</head>
<body>
	<div style="background-color: red; 		float: left">빨강 박스</div>
	<div style="background-color: orange; 	float: left">주황 박스</div>
	<div style="background-color: yellow; 	float: left">노랑 박스</div>
	<div style="background-color: green; 	clear: both;">초록 박스</div>
	<div style="background-color: blue; 	float: right">파랑 박스</div>
	<div style="background-color: navy; 	float: right">남색 박스</div>
	<div style="background-color: purple; 	float: right">보라 박스</div>
</body>
</html>

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

chapter19 : position  (0) 2023.05.18
chapter18 : overflow  (0) 2023.05.18
chapter16 : float  (0) 2023.05.18
chapter15 : float  (0) 2023.05.18
chapter14 : float  (0) 2023.05.18