postcss-utilities
Version:
PostCSS plugin to add a collection of mixins, shortcuts, helpers and tools for your CSS
24 lines (19 loc) • 342 B
CSS
.one {
float: left;
@util border-style(dashed);
color: #fff;
}
.two {
float: left;
@util border-style(solid dotted);
color: #fff;
}
.three {
@util border-style(solid dashed dotted);
}
.four {
@util border-style(solid null dashed dotted);
}
.four-equals {
@util border-style(solid solid solid solid);
}