[Ayuda] Media query


mtz0

Hablar de más indica mucha ignorancia.
Noderador
Nodero
Noder
Buenas, ¿alguien sabe por qué no me funciona el media query?

HTML:

HTML:
<!DOCTYPE html>
<html lang="en" dir="ltr">
  <head>
    <meta charset="utf-8">
    <title>Mi web</title>
    <link rel="stylesheet" href="css/style.css">
  </head>
  <body>
    <nav>
        <a href="#" class="nav-enlace">Inicio</a>
        <a href="#" class="nav-enlace">Nosotros</a>
        <a href="#" class="nav-enlace">Servicios</a>
        <a href="#" class="nav-enlace">Contacto</a>
    </nav>
  </body>
</html>

CSS:

CSS:
.nav-enlace{
  background: salmon;
  color:#fff;
  padding:10px 30px;
  display:inline-block;
  text-decoration: none;
}

nav{
  background: rebeccapurple;
  padding: 10px;
  display: flex;
  justify-content: space-around;
}

.nav-enlace:hover{
  background: #d8b9c3;
}

@media (max-width: 600px) {
  nav{
    background: black;
  }
}
 

Abaskal

Peep? :((
Noder
Que yo sepa el html esta bien, del CSS no tengo ni puta idea, digo por si ya te sirve de algo aunque haya pasao un mes xd
 

cbrn

el ex-staff más guapo del foro
Noderador
Nodero
Noder
CSS:
background-color: black !important;