npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

postcss-longhand

1.0.0

@hemanth

npmHomeRepoSnykSocket
Downloads:81
$ npm install postcss-longhand
DailyWeeklyMonthlyYearly

postcss-longhand Build Status

css-longhand plugin for postCSS

.classname {
	margin: 0;
}

to

.classname {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

Works for all the properties that css-longhand supports.

Install

npm i --save-dev postcss-longhand

Usage

postcss([ require('postcss-longhand') ])

See PostCSS docs for examples for your environment.