Last active
September 26, 2021 06:17
-
-
Save itkrt2y/7275265cf2ef4a18f4fbadf50cccce33 to your computer and use it in GitHub Desktop.
Get width of text in browser
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
document.createElement("canvas") | |
.getContext("2d") | |
.measureText("Hello こんにちは 😀") | |
.width; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment