npm.io
5.0.0 • Published 2 years ago

postcss-size

Licence
MIT
Version
5.0.0
Deps
0
Size
3 kB
Vulns
0
Weekly
0
Stars
52

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;
}
Sponsored by Evil Martians

Docs

Read full docs here.

Keywords