Skip to content

Instantly share code, notes, and snippets.

@victory-sokolov
Last active November 23, 2023 14:39
Show Gist options
  • Save victory-sokolov/7584315541c9c122a94dfbc73495ddaf to your computer and use it in GitHub Desktop.
Save victory-sokolov/7584315541c9c122a94dfbc73495ddaf to your computer and use it in GitHub Desktop.
return css property font-size
const getStyle = (el, ruleName) => getComputedStyle(el)[ruleName];
getStyle(document.querySelector('p'), 'font-size'); // '16px'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment