Created
February 12, 2025 13:41
-
-
Save Tymek/c51f3dfb098dbd8b5310b52114e1adf4 to your computer and use it in GitHub Desktop.
Visually checking font-size on the page.
This file contains 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
(() => { | |
document.querySelectorAll('*').forEach(el => { | |
const hasDirectText = Array.from(el.childNodes).some( | |
node => node.nodeType === Node.TEXT_NODE && node.textContent.trim().length > 0 | |
) | |
if (hasDirectText) { | |
const size = window.getComputedStyle(el).fontSize | |
if (size === '16px') { | |
el.style.backgroundColor = 'red' | |
} else if (size === '15px') { | |
el.style.backgroundColor = 'green' | |
} else if (size === '14px') { | |
el.style.backgroundColor = 'blue' | |
} else { | |
el.style.backgroundColor = 'yellow' | |
} | |
} | |
}) | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment