Sidebar - II
Lesson 7 of 13 in Coddy's Sidebar | Front-end Project course.
Challenge
EasyTarget class 'sidebar':
1. Set top and right to zero.
2. Set the background blur to 10 pixels.
Try it yourself
<!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>All lessons in Sidebar | Front-end Project
1Introduction
What you will build?