Menu
Coddy logo textTech

열기 기능

Coddy의 사이드바 | 프론트엔드 프로젝트 코스 레슨 — 13개 중 13번째.

challenge icon

챌린지

쉬움

이제 동일한 방식으로 #openSidebarBtn을 타겟팅하여 'sidebar' 클래스의 right 속성을 0 픽셀로 설정하세요.

직접 해보기

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <link rel="stylesheet" href="styles.css">
  <title>Mobile Sidebar</title>
</head>
<body>
  <button id="openSidebarBtn">Open</button>
  <div id="sidebar" class="sidebar">
    <button id="closeSidebarBtn">Close</button>
    <!-- Your sidebar content goes here -->
    <p>Home</p>
    <p>About</p>
    <p>Services</p>
    <p>Contact</p>
  </div>
  <script src="script.js"></script>
</body>
</html>

사이드바 | 프론트엔드 프로젝트의 모든 레슨