Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save markhdavis/3c3399822ed7d8820bb8b2db4a0f88d9 to your computer and use it in GitHub Desktop.
Save markhdavis/3c3399822ed7d8820bb8b2db4a0f88d9 to your computer and use it in GitHub Desktop.
let para = document.querySelector('p');
let compStyles = window.getComputedStyle(para);
para.textContent = 'My computed font-size is ' +
compStyles.getPropertyValue('font-size') +
',\nand my computed line-height is ' +
compStyles.getPropertyValue('line-height') +
'.';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment