Enlace | Less | Sass (SCSS syntax) | Stylus |
|---|---|---|---|
| Sitio web | lesscss.org | sass-lang.com | github.io/... |
| Latest version | 2.5.3 | 3.4.19 | 0.52.4 |
| Fecha de lanzamiento | 2015-09-25 | 2015-10-10 | 2015-09-04 |
| Development language | Javascript | Ruby | Javascript |
| Características | |||
| Variables | Sí | Sí | Sí |
| Mixins | Sí | Sí | Sí |
| Conditionals | - | Sí | Sí |
| Get image dimensions | Sí | - | Sí |
| Color manipulation | Sí | Sí | Sí |
| Dark/light color detection | - | - | Sí |
| Nesting | Sí | Sí | Sí |
| 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;
}
|
| Actualizado | 2015-11-12 23:18:34 | 2015-11-12 23:18:34 | 2015-11-12 23:24:46 |