<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style>
ul{
	border : 10px inset red;
	border-left : none;
	border-right : none;
	list-style-type : none;
	height : 50px;
	width : 70%;
	margin : 10px auto; /* 가운데 정렬 */
	
}
ul li{
	width : 200px;
	float : left;
	margin : 5px;
/*	border : 1px solid blue; */
	padding-left : 8%;
}
ul li a{ 
	font-size : 1.5em;
	text-transform : uppercase;
	text-decoration : none;
	letter-spacing : 5px;	
/*	border : 1px solid green;*/
}
ul li a:hover{
	text-decoration : underline;
}
</style>
</head>
<body>
<ul>
	<li><a href="#">home</a></li> <!-- 옆으로 display : inline float : left -->
	<li><a href="#">project</a></li>
	<li><a href="#">notice</a></li>
	<li><a href="#">qna</a></li>
</ul>
</body>
</html>

😀 참고자료

😀 실행

'웹프로그래밍(HTML, CSS3, JavaScript)' 카테고리의 다른 글

[html] documentwrite  (0) 2022.12.29
[html/jsp] position위치  (0) 2022.12.27
[html/jsp] wordwrapping  (0) 2022.12.27
[html/jsp] table스타일  (0) 2022.12.27
[html/jsp] border 스타일  (0) 2022.12.27

+ Recent posts