-
-
Save anupkrbid/b610868c9ffd3e4d43ebc4e582666263 to your computer and use it in GitHub Desktop.
'Menlo' font not triggering non-monospaced render on Chrome/Android.
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
<!doctype html> | |
<html> | |
<head> | |
<style> | |
.monospace { | |
font-family: Menlo, Monaco, "Droid Sans Mono", Consolas, "Lucida Console", "Courier New", monospace; | |
} | |
.monospace_without_menlo { | |
font-family: Monaco, "Droid Sans Mono", Consolas, "Lucida Console", "Courier New", monospace; | |
} | |
</style> | |
</head> | |
<body> | |
<pre class="monospace"> | |
0 1 2 3 4 5 6 7 8 9 | |
1 a b c d e f g h i | |
2 j k l m n o p q r | |
3 s t u v w x y z A | |
4 B C D E F G H I J | |
5 K L M N O P Q R S | |
6 T U V W X Y Z a b | |
7 c d e f g h i j k | |
8 l m n o p q r s t | |
9 u v w x y z A B C | |
</pre> | |
<pre class="monospace_without_menlo"> | |
0 1 2 3 4 5 6 7 8 9 | |
1 a b c d e f g h i | |
2 j k l m n o p q r | |
3 s t u v w x y z A | |
4 B C D E F G H I J | |
5 K L M N O P Q R S | |
6 T U V W X Y Z a b | |
7 c d e f g h i j k | |
8 l m n o p q r s t | |
9 u v w x y z A B C | |
</pre> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment