Skip to content

desandro/get-style-property

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

getStyleProperty - quick & dirty CSS property testing

Original by @kangax 😍 ⚡ 🌟. See perfectionkills.com/feature-testing-css-properties/

var transformProp = getStyleProperty('transform');
// returns WebkitTransform on Chrome / Safari
// or transform on Firefox, or MozTransform on old firefox

// then you can use it when setting CSS
element.style[ transformProp ] = 'translate( 12px, 34px )';

// or simply check if its supported
var supportsTranforms = !!transformProp;

Install

Bower 🐦: bower install get-style-property

npm: npm install desandro-get-style-property

Component: component install desandro/get-style-property

MIT License

getStyleProperty is released under the MIT License.

About

quick & dirty CSS property testing

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors