MENO - Direttive annidate e bolle

Descrizione

Puoi nidificare le direttive come media e keyframe nello stesso modo, nello stesso modo in cui annidi i selettori. Puoi posizionare la direttiva in primo piano ei suoi elementi relativi non verranno modificati all'interno del suo set di regole. Questo è noto come processo di ribollimento.

Esempio

L'esempio seguente mostra l'uso delle direttive annidate e il bubbling nel file LESS -

<html>
   <head>
      <title>Nested Directives</title>
      <link rel = "stylesheet" type = "text/css" href = "style.css" />
   </head>
   
   <body>
      <h1>Example using Nested Directives</h1>
      <p class = "myclass">LESS enables customizable, 
      manageable and reusable style sheet for web site.</p>
   </body>
</html>

Quindi, crea il file style.less .

style.less

.myclass {
   @media screen {
      color: blue;
      @media (min-width: 1024px) {
         color: green;
      }
   }
   @media mytext {
      color: black;
   }
}

È possibile compilare il file style.less in style.css utilizzando il seguente comando:

lessc style.less style.css

Esegui il comando precedente; creerà automaticamente il file style.css con il seguente codice -

style.css

@media screen {
   .myclass {
      color: blue;
   }
}
@media screen and (min-width: 1024px) {
   .myclass {
      color: green;
   }
}
@media mytext {
   .myclass {
      color: black;
   }
}

Produzione

Segui questi passaggi per vedere come funziona il codice sopra:

  • Salva il codice html sopra nel file nested_directives_bubbling.html file.

  • Apri questo file HTML in un browser, verrà visualizzato il seguente output.