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

chapter25 : menu 본문

WEB.CSS

chapter25 : menu

GAWON 2023. 5. 18. 10:24
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
	*{
		padding: 0;
		margin: 0;
	}
	ul{
		list-style-type: none;
		background-color: gray;
		overflow: hidden;
	}
	ul li{
		float: left;
	}
	li a{
		display: block;
		text-align: center;
		width: 100px;
		padding: 20px;
		text-decoration: none;
		color: #fff;
	}
	li a:hover {
		background-color: maroon;
		font-weight: bold;
		color: orange;
	}

</style>
</head>
<body>
	<ul>
		<li><a href="#">Home</a></li>
		<li><a href="#">Board</a></li>
		<li><a href="#">Guest</a></li>
		<li><a href="#">About</a></li>
	</ul>
	<div>본문</div>
</body>
</html>

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

chapter27 : menu  (0) 2023.05.18
chapter26 : menu  (0) 2023.05.18
chapter24 : display  (0) 2023.05.18
chapter23 : display  (0) 2023.05.18
chapter22 : z-index  (0) 2023.05.18