Skip to content

Instantly share code, notes, and snippets.

@anon987654321
Created July 8, 2025 14:34
Show Gist options
  • Save anon987654321/637da405b07b90cdd59c7b9d3dd938bd to your computer and use it in GitHub Desktop.
Save anon987654321/637da405b07b90cdd59c7b9d3dd938bd to your computer and use it in GitHub Desktop.
Native OS sans-serif Font-stack
<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>
*{
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