Css4less
- 3. Mixins
.border-radius (@radius: 15px) {
border-radius: @radius;
-moz-border-radius: @radius;
-webkit-border-radius: @radius;
}
#div1 {
.border-radius();
}
#div2 {
.border-radius(5px);
}
- 4. Nested rules
#header {
color: black;
.navigation {
font-size: 12px;
}
.logo {
width: 300px;
&:hover {
color: red;
}
}
}
#header {
color: black;
}
#header .navigation {
font-size: 12px;
}
#header .logo {
width: 300px;
}
#header .logo:hover {
color: red;
}