Last active
November 23, 2023 14:39
-
-
Save victory-sokolov/7584315541c9c122a94dfbc73495ddaf to your computer and use it in GitHub Desktop.
return css property font-size
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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