Skip to content

Instantly share code, notes, and snippets.

@linkesch
Created June 18, 2019 10:36
Show Gist options
  • Save linkesch/84230829fabbeedcdef1662ee2288fdd to your computer and use it in GitHub Desktop.
Save linkesch/84230829fabbeedcdef1662ee2288fdd to your computer and use it in GitHub Desktop.
Check if a property is a valid CSS property
function isValidProperty(property, value) {
const tmp = document.createElement('div');
tmp.style.setProperty(property, value);
return Boolean(tmp.style.getPropertyValue(property));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment