Solucionado (ver solución)
Solucionado
(ver solución)
2
respuestas

[Duda] No veo los cambios, estoy trabajando desde Visual.. dejo mi codigo

Este es el css

.header{
    align-items:center;
    background: #f9f9f9;
    display: flex;
    justify-content: space-between;
    padding-left: 2rem;
    padding-right: 2rem;
}
.header nav ul {
    display:flex;
}
.header nav ul li {
    list-style:none;
}
.header nav ul li a {
    color: #808080;
    margin-right: 1.25rem;
    text-decoration: none;
    text-transform: lowercase;
}
header nav ul li a:hover {
    text-decoration: underline;
}
header nav ul li a#activo {
    color: #333333;
    font-weight: bold;
}
header nav ul li a:hover {
    text-decoration: underline;
}
2 respuestas
<!DOCTYPE html>
<html lang="pt-BR">
    <head>
        <link href="https://fonts.googleapis.com/css?family=Pacifico|Roboto:100,300,400,500,700,900" rel="stylesheet" />
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <meta http-equiv="X-UA-Compatible" content="ie=edge" />
        <title>Fruta & Fruto</title>
        <link href="./assets/css/normalize.css" rel="stylesheet" />
        <link href="./assets/css/reset.css" rel="stylesheet" />
        <link href="./assets/css/cabecera.css" rel="stylesheet" />
        <link href="./assets/css/style.css" rel="stylesheet" />
    </head>
    <body>
        <header>
            <img src="./assets/img/logo.jpg" alt="">
                <nav>
                   <ul>
                        <li><a id ="activo" href="#">Inicio</a></li>
                        <li><a href="#">Recetas</a></li>
                        <li><a href="#">Quienes somos</a></li>
                        <li><a href="#">Contacto</a></li>
                   </ul>
                 </nav>
        </header>
    </body>
</html>
solución!

Ya lo solucione, Era el punto!!