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

chapter12 : list 본문

WEB.CSS

chapter12 : list

GAWON 2023. 5. 18. 09:39
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
	ul{
		list-style-type: square;
		background-color: fuchsia;
	}
	li{
		background-color: orange;
	}
</style>
</head>
<body>
	<h1>순서가 없는 리스트</h1>
	<ul>
		<li>A</li>
		<li>B</li>
		<li>C</li>
		<li>D</li>
		<li>E</li>
	</ul>
</body>
</html>

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

chapter14 : float  (0) 2023.05.18
chapter13_visibility  (0) 2023.05.18
chapter11 : text  (0) 2023.05.18
chapter10 : box_model  (0) 2023.05.18
chapter09 : margin  (0) 2023.05.18