Menu
Coddy logo textTech

Barra lateral - I

Lección 6 de 13 del curso Barra lateral | Proyecto Front-end de Coddy.

challenge icon

Desafío

Fácil

Para la clase 'sidebar', establece las siguientes propiedades:

1. Establece el ancho a 250 píxeles y el alto al 100%.

2. Establece el color de fondo de tu elección.

3. Establece la posición a fixed.

4. Establece box-sizing a border-box.

Pruébalo tú mismo

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

Todas las lecciones de Barra lateral | Proyecto Front-end