Menu
Coddy logo textTech

Sidebar - II

Lektion 7 von 13 im Kurs Sidebar | Front-end-Projekt von Coddy.

challenge icon

Aufgabe

Einfach

Zielklasse 'sidebar':

1. Setze top und right auf Null.

2. Setze den background blur auf 10 Pixel.

Probier es selbst

<!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>

Alle Lektionen in Sidebar | Front-end-Projekt