Socket
Book a DemoInstallSign in
Socket

postcss-longhand

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-longhand

PostCSS plugin for longhand CSS notations.

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

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.

Keywords

postcss-plugin

FAQs

Package last updated on 06 Apr 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts