Lien | Less | Sass (SCSS syntax) | Stylus |
|---|---|---|---|
| Site web | lesscss.org | sass-lang.com | github.io/... |
| Dernière version | 2.5.3 | 3.4.19 | 0.52.4 |
| Date de sortie | 25 sep. 2015 | 10 oct. 2015 | 4 sep. 2015 |
| Langage de développement | Javascript | Ruby | Javascript |
| Fonctionnalités | |||
| Variables | Oui | Oui | Oui |
| Mixins | Oui | Oui | Oui |
| Conditionals | - | Oui | Oui |
| Get image dimensions | Oui | - | Oui |
| Color manipulation | Oui | Oui | Oui |
| Dark/light color detection | - | - | Oui |
| Nesting | Oui | Oui | Oui |
| Autre | |||
| Syntax sample |
@mycolor: black;
#header {
color: @mycolor;
.navigation {
font-size: 12px;
}
.logo {
width: 300px;
}
}
| SCSS syntax:
$mycolor:black;
#header {
color: $mycolor;
.navigation {
font-size: 12px;
}
.logo {
width: 300px;
}
}
|
mycolor=black
#header {
color: mycolor;
.navigation
font-size: 12px;
.logo
width: 300px;
}
|
| Mise à jour | 12 nov. 2015 23:18:34 | 12 nov. 2015 23:18:34 | 12 nov. 2015 23:24:46 |