This font-stack is the font stack that will fetch the native sans-serif font for OSX, Windows 10, Android, and iOS
Created
July 8, 2025 14:34
-
-
Save anon987654321/637da405b07b90cdd59c7b9d3dd938bd to your computer and use it in GitHub Desktop.
Native OS sans-serif Font-stack
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
<h1>Native OS Driven Font-Stack</h1> | |
<p>This list of fonts will get the native sans-serif font for OSX, Windows 10, iOS, and Android<p> | |
<pre><code> | |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif; | |
</code></pre> | |
<pre><code> | |
// Safari for OS X and iOS (San Francisco) | |
-apple-system, | |
// Chrome for OS X (San Francisco) | |
BlinkMacSystemFont, | |
// Windows | |
"Segoe UI", | |
// Android | |
"Roboto", | |
// Basic web fallback | |
"Helvetica Neue", Arial, sans-serif | |
</code></pre> |
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
*{ | |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment