Link | Less | Sass (SCSS syntax) | Stylus |
|---|---|---|---|
| Webseite | lesscss.org | sass-lang.com | github.io/... |
| Latest version | 2.5.3 | 3.4.19 | 0.52.4 |
| Veröffentlichungsdatum | 2015-09-25 | 2015-10-10 | 2015-09-04 |
| Development language | Javascript | Ruby | Javascript |
| Eigenschaften | |||
| Variables | Ja | Ja | Ja |
| Mixins | Ja | Ja | Ja |
| Conditionals | - | Ja | Ja |
| Get image dimensions | Ja | - | Ja |
| Color manipulation | Ja | Ja | Ja |
| Dark/light color detection | - | - | Ja |
| Nesting | Ja | Ja | Ja |
| Additional | |||
| 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;
}
|
| Aktualisieren | 2015-11-12 23:18:34 | 2015-11-12 23:18:34 | 2015-11-12 23:24:46 |