방법-1
display:block을 사용한다.
더보기
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
* {
padding: 0; margin: 0;
}
header {
position: fixed;
top: 0; left: 0; right: 0;
/* right 0은 오른쪽 끝까지 간다는 뜻아니면 width 100% 로 줘도됨! */
color: white;
background: darkblue;
}
header>nav>ul>li {
list-style: none;
display: inline-block;
}
header>nav>ul>li>a {
display: block;
text-decoration: none;
padding: 10px 20px;
color: white;
font-weight: 700;
}
header>nav>ul>li>a:hover {
background: #03f;
font-weight: 700;
}
main {
min-height: 1500px;
padding-top: 40px;
}
footer {
height: 50px;
line-height: 50px;
text-align: center;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">홈</a></li>
<li><a href="#">메뉴-1</a></li>
<li><a href="#">메뉴-2</a></li>
</ul>
</nav>
</header>
<main>
<h3>display:flex를 사용하지 않고 메뉴바를 화면에 고정</h3>
<p>메인 영역</p>
<p>메인 영역</p>
<p>메인 영역</p>
<p>메인 영역</p>
<p>메인 영역</p>
<p>메인 영역</p>
<p>메인 영역</p>
</main>
<footer>
<p>footer 영역</p>
</footer>
</body>
</html>
방법-2
float:left 를 사용한다.
더보기
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
* {
padding: 0; margin: 0;
}
header>nav {
width: 100%;
background: darkblue;
position: fixed;
}
header>nav>ul {
list-style: none;
}
header>nav>ul>li {
width: 100px; height: 50px; line-height: 50px;
text-align: center;
float: left;
}
header>nav>ul>li>a {
color: white;
text-decoration: none;
}
header>nav>ul>li:hover, header>nav>ul>li:active {
background: blue;
}
main {
min-height: 1100px;
clear: both;
padding-top: 55px;
}
footer {
height: 50px;
line-height: 50px;
text-align: center;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">홈</a></li>
<li><a href="#">메뉴-1</a></li>
<li><a href="#">메뉴-2</a></li>
</ul>
</nav>
</header>
<main>
<h3>display:flex를 사용하지 않고 메뉴바를 화면에 고정</h3>
<p>메인 영역</p>
<p>메인 영역</p>
<p>메인 영역</p>
<p>메인 영역</p>
<p>메인 영역</p>
<p>메인 영역</p>
<p>메인 영역</p>
</main>
<footer>
<p>footer 영역</p>
</footer>
</body>
</html>
'쌍용강북교육센터 > 9월' 카테고리의 다른 글
0924_Javascript : 개요 (0) | 2021.09.25 |
---|---|
0923_CSS : Grid Layout (0) | 2021.09.23 |
0923_CSS : flex 속성 (0) | 2021.09.23 |
0923_CSS : columns 다단 (0) | 2021.09.23 |
0923_CSS : clip (0) | 2021.09.23 |