Shorthand for height and width css properties.

Version
  • 1.0.0

Example

div { size: 100px; } = div { height: 100px; width: 100px; }
div { size: 100px 200px; } = div { height: 100px; width: 200px; }