MENO -! Parola chiave importante
Descrizione
Il !importantparola chiave viene utilizzata per sostituire la particolare proprietà. Quando viene posizionato dopo la chiamata mixin, contrassegna tutte le proprietà ereditate come ! Importanti .
Il seguente esempio dimostra l'uso della parola chiave! Important nel file LESS -
<html>
<head>
<link rel = "stylesheet" href = "style.css" type = "text/css" />
<title>The !important keyword</title>
</head>
<body>
<h1>Welcome to Tutorialspoint</h1>
<p class = "para1">LESS is a CSS pre-processor that enables customizable,
manageable and reusable style sheet for web site.</p>
<p class = "para2">LESS is a CSS pre-processor that enables customizable,
manageable and reusable style sheet for web site.</p>
</body>
</html>
Quindi, crea il file style.less .
style.less
.mixin() {
color: #900;
background: #F7BE81;
}
.para1 {
.mixin();
}
.para2 {
.mixin() !important;
}
Puoi compilare style.less in style.css usando il seguente comando:
lessc style.less style.css
Esegui il comando precedente; creerà automaticamente il file style.css con il seguente codice -
style.css
.para1 {
color: #900;
background: #F7BE81;
}
.para2 {
color: #900 !important;
background: #F7BE81 !important;
}
Produzione
Segui questi passaggi per vedere come funziona il codice sopra:
Salva il codice html sopra nel file less_mixin_important.html file.
Apri questo file HTML in un browser, verrà visualizzato il seguente output.