Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hikari-no-yume/f4eb8e7dba47e71a1e86a9533a4a62e2 to your computer and use it in GitHub Desktop.
Save hikari-no-yume/f4eb8e7dba47e71a1e86a9533a4a62e2 to your computer and use it in GitHub Desktop.
for (let i = 0; i < 12; i++) {
let elem = document.createElement('div');
elem.textContent = 'cache';
elem.style.textAlign = 'center';
elem.style.borderBottom = '1px solid';
elem.style.font = (10 ** (1 + i / 12)) + 'pt sans-serif';
document.body.appendChild(elem);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment