사이드바 - I
Coddy의 사이드바 | 프론트엔드 프로젝트 코스 레슨 — 13개 중 6번째.
챌린지
쉬움'sidebar' 클래스에 대해 다음 속성들을 설정하세요:
1. 너비를 250 pixels로, 높이를 100%로 설정하세요.
2. 원하는 배경색을 설정하세요.
3. position을 fixed로 설정하세요.
4. box-sizing을 border-box로 설정하세요.
직접 해보기
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
<title>Sidebar</title>
</head>
<body>
<button id="openSidebarBtn">Open</button>
<div id="sidebar" class="sidebar">
<button id="closeSidebarBtn">Close</button>
<p>Home</p>
<p>About</p>
<p>Services</p>
<p>Contact</p>
</div>
<script src="script.js"></script>
</body>
</html>