Skip to content

Instantly share code, notes, and snippets.

@sergeysova
Last active August 29, 2020 20:48
Show Gist options
  • Save sergeysova/b003fae5670a476c28ff2ff972ec7fbc to your computer and use it in GitHub Desktop.
Save sergeysova/b003fae5670a476c28ff2ff972ec7fbc to your computer and use it in GitHub Desktop.
Unwrap CSS shorthands
function getLonghands(property) {
const element = document.createElement('div');
const style = element.style;
style[property] = "inherit";
const ret = [...style];
style.cssText = "";
return ret;
}
getLonghands('padding')
// => ["padding-top", "padding-right", "padding-bottom", "padding-left"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment