postcss-size
v5.0.0
Published
PostCSS plugin for size shortcut
Downloads
4,557
Maintainers
Readme
PostCSS Size
PostCSS plugin for size
shortcut to set width
and height
properties.
It also handles min-size
to set min-width
and min-height
, and max-size
to set max-width
and max-height
.
.two {
size: 20px 10px;
}
.one {
size: 10px;
}
.minmax {
min-size: 10px;
max-size: 200px auto;
}
.two {
width: 20px;
height: 10px;
}
.one {
width: 10px;
height: 10px;
}
.minmax {
min-width: 10px;
min-height: 10px;
max-width: 200px;
max-height: auto;
}
Docs
Read full docs here.