サイドバー - II
Coddyの「サイドバー | フロントエンド制作」コースのレッスン 7/13。
チャレンジ
簡単ターゲットクラス 'sidebar':
1. top と right を 0 に設定します。
2. 背景のぼかしを 10 ピクセルに設定します。
自分で試してみよう
<!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>