System Font
Embed This Widget
Add the script tag and a data attribute to embed this widget.
Embed via iframe for maximum compatibility.
<iframe src="https://fontfyi.com/iframe/glossary/system-font/" width="420" height="400" frameborder="0" style="border:0;border-radius:10px;max-width:100%" loading="lazy"></iframe>
Paste this URL in WordPress, Medium, or any oEmbed-compatible platform.
https://fontfyi.com/glossary/system-font/
Add a dynamic SVG badge to your README or docs.
[](https://fontfyi.com/glossary/system-font/)
Use the native HTML custom element.
A font pre-installed on the operating system. Using system fonts (system-ui stack) eliminates download time but sacrifices brand consistency.
System fonts are typefaces pre-installed by the operating system — available on every device without any download. Each major platform ships with a curated set: macOS and iOS use San Francisco, Windows uses Segoe UI, Android uses Roboto, and older macOS versions used Helvetica Neue and Geneva.
System fonts load instantly (zero network request), integrate with platform UI conventions, and typically have superior hinting for their respective rendering environments. These advantages make them attractive for UI-heavy applications where interface chrome should feel native.
Using system fonts in CSS:
The system-ui keyword (supported in all modern browsers) automatically selects the OS's UI font:
body {
font-family: system-ui, sans-serif;
}
For broader compatibility, including older browsers:
body {
font-family:
system-ui,
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
sans-serif;
}
Using a specific system font by name:
/* Explicitly request a platform font */
.mac-label {
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}
/* Georgia — widely installed serif */
.classic {
font-family: Georgia, 'Times New Roman', serif;
}
/* Courier — widely installed monospace */
.typewriter {
font-family: 'Courier New', Courier, monospace;
}
System fonts with CSS local():
Inside @font-face, local() checks if a font is installed on the system before fetching a remote URL:
@font-face {
font-family: 'Inter';
src:
local('Inter'), /* Use installed copy first */
url('/fonts/inter.woff2') format('woff2'); /* Download if not installed */
}
This optimization can reduce load times for users who have already installed the font (common for popular fonts like Inter or Roboto), but it creates a fingerprinting vector that some browsers have moved to disable. Google Fonts removed local() from their delivery in 2022 for this reason.
When to use system fonts:
System fonts work best for: application interfaces that should feel native, email HTML (where remote fonts are often blocked), tools and dashboards where performance is paramount, and fallback stacks behind web fonts.
They're less suitable for brand-differentiated design, where a custom typeface is part of the visual identity, or for editorial contexts where the typographic character of the content matters.
Notable system fonts by platform:
| Platform | UI Font | Installed Text Fonts |
|---|---|---|
| macOS/iOS | San Francisco (SF Pro) | New York, Helvetica Neue, Georgia |
| Windows 11 | Segoe UI Variable | Calibri, Cambria, Times New Roman |
| Android | Roboto | Noto fonts (multilingual) |
| ChromeOS | Google Sans | Roboto |
San Francisco is not available via CSS name — you access it through -apple-system or system-ui. It's the font powering virtually every Apple interface element, making it immediately familiar to Apple device users.
相关术语
相关工具
展示此概念的字体
了解更多
移动应用需要在小字号下依然可读、加载迅速,并在高密度屏幕上显示清晰的字体。iOS 和 Android 的最佳选择。
字体评测邮件排版仍受限于客户端支持。最适合邮件的字体——网页安全默认选项、托管字体的变通方法,以及万无一失的回退方案。
字体评测在未经训练的眼中,它们几乎一模一样。但 Arial 与 Helvetica 存在关键差异——背后还有一段复杂的模仿与竞争史。
设计系统分析 Apple HIG、Material Design、IBM Carbon、Shopify Polaris 等如何处理排版——字体选择、字号体系与规范。