//Mixin
@mixin doubly($margin) {
& + & {
margin-left: $margin;
@content;
}
}
//Usage
.col {
@include doubly(20px);
float: left;
width: 25%;
}
//Output
.col {
width: 25%;
float: left;
}
.col + .col {
margin-left: 20px;
}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.