Skip to content

Instantly share code, notes, and snippets.

@WesleySmits
Created May 1, 2022 08:02
Show Gist options
  • Save WesleySmits/bb7212290a111b4c69ddbdcea660cb1a to your computer and use it in GitHub Desktop.
Save WesleySmits/bb7212290a111b4c69ddbdcea660cb1a to your computer and use it in GitHub Desktop.
Accessible Accordion: Utility function to get absolute height
export function getAbsoluteHeight(el) {
const styles = window.getComputedStyle(el);
const margin = parseFloat(styles.marginTop) + parseFloat(styles.marginBottom);
return Math.ceil(el.offsetHeight + margin);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment