<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Safari on Jingyuan</title>
        <link>https://jingyuan-zheng.github.io/tags/safari/</link>
        <description>Recent content in Safari on Jingyuan</description>
        <generator>Hugo -- gohugo.io</generator>
        <language>en-US</language>
        <copyright>Jingyuan Zheng</copyright>
        <lastBuildDate>Wed, 22 Jul 2026 11:00:00 +0200</lastBuildDate><atom:link href="https://jingyuan-zheng.github.io/tags/safari/index.xml" rel="self" type="application/rss+xml" /><item>
            <title>Why Chinese Text Falls Back to a Serif Font in Safari</title>
            <link>https://jingyuan-zheng.github.io/p/safari-chinese-font-songti-fallback-fix/</link>
            <pubDate>Wed, 22 Jul 2026 11:00:00 +0200</pubDate>
            <guid>https://jingyuan-zheng.github.io/p/safari-chinese-font-songti-fallback-fix/</guid>
            <description>&lt;img src=&#34;https://jingyuan-zheng.github.io/img/safari-cjk-font-fallback-fix/featured.png&#34; alt=&#34;Featured image of post Why Chinese Text Falls Back to a Serif Font in Safari&#34; /&gt;&lt;p&gt;This post explains a common Safari typography problem for developers and designers: a page is intended to use a clean sans-serif style, but some Chinese text unexpectedly appears in a serif font.&lt;/p&gt;&#xA;&lt;p&gt;To readers who use Chinese every day, the change is immediately visible. It is roughly comparable to a navigation label suddenly switching from a modern sans-serif face to Times New Roman. The text remains readable, but it no longer belongs to the surrounding interface.&lt;/p&gt;&#xA;&lt;div class=&#34;post-figure&#34;&gt;&#xA;    &lt;img src=&#34;https://jingyuan-zheng.github.io/img/safari-cjk-font-fallback-fix/fig-pingfang.webp&#34; alt=&#34;A Bilibili page in Safari with Chinese text correctly rendered in PingFang&#34;&gt;&#xA;    &lt;div class=&#34;caption&#34;&gt;Figure 1: The intended result—the Chinese interface text uses the sans-serif PingFang family.&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&lt;div class=&#34;post-figure&#34;&gt;&#xA;    &lt;img src=&#34;https://jingyuan-zheng.github.io/img/safari-cjk-font-fallback-fix/fig-songti.webp&#34; alt=&#34;The same Bilibili page in Safari with some Chinese text unexpectedly rendered in Songti&#34;&gt;&#xA;    &lt;div class=&#34;caption&#34;&gt;Figure 2: The fallback problem—parts of the same interface unexpectedly use the serif Songti family.&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&lt;h2 id=&#34;if-you-read-chinese-and-just-want-to-fix-safari&#34;&gt;If You Read Chinese and Just Want to Fix Safari&#xA;&lt;/h2&gt;&lt;p&gt;You do not need to understand the CSS or change any website code. The project provides one ready-to-use stylesheet:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/Jingyuan-Zheng/Safari-CJK-Font-Fallback-Fix/blob/main/safari-fix.css&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;&#xA;    &gt;Download the complete &lt;code&gt;safari-fix.css&lt;/code&gt;&lt;/a&gt;.&lt;/li&gt;&#xA;&lt;li&gt;Open Safari Settings and select &lt;strong&gt;Advanced&lt;/strong&gt;.&lt;/li&gt;&#xA;&lt;li&gt;Choose the downloaded file from the &lt;strong&gt;Style sheet&lt;/strong&gt; menu.&lt;/li&gt;&#xA;&lt;li&gt;Quit Safari completely with &lt;kbd&gt;Command&lt;/kbd&gt;+&lt;kbd&gt;Q&lt;/kbd&gt;, then reopen it.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;If you later want to disable the fix, return to the same menu and select &lt;strong&gt;None Selected&lt;/strong&gt;. It does not install a font, modify macOS, or require a Safari extension.&lt;/p&gt;&#xA;&lt;div class=&#34;post-figure&#34;&gt;&#xA;    &lt;img src=&#34;https://jingyuan-zheng.github.io/img/safari-cjk-font-fallback-fix/fig-safari-stylesheet.webp&#34; alt=&#34;Safari Advanced settings with safari-fix.css selected in the Style sheet menu&#34;&gt;&#xA;    &lt;div class=&#34;caption&#34;&gt;Figure 3: Select safari-fix.css from Safari Settings → Advanced → Style sheet.&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&lt;p&gt;The rest of this article explains the underlying problem and how developers can prevent it on their own websites.&lt;/p&gt;&#xA;&lt;h2 id=&#34;the-short-explanation&#34;&gt;The Short Explanation&#xA;&lt;/h2&gt;&lt;p&gt;Many sites begin their font stack with Arial, Helvetica, Inter, Roboto, or another Latin typeface. These fonts can render English letters and numbers, but they may not contain Chinese characters.&lt;/p&gt;&#xA;&lt;p&gt;When the browser reaches a character that the selected font cannot draw, it must find another font. This is font fallback. If the remaining stack does not name a suitable Chinese sans-serif font, Safari may choose a Chinese serif font instead.&lt;/p&gt;&#xA;&lt;p&gt;That is why a line can contain perfectly normal English alongside Chinese text that looks as though it came from a different design system. Chrome and Safari may also choose different fallback fonts for the same CSS, so testing only one browser can hide the problem.&lt;/p&gt;&#xA;&lt;h2 id=&#34;start-with-a-better-font-stack&#34;&gt;Start with a Better Font Stack&#xA;&lt;/h2&gt;&lt;p&gt;If the design is meant to be sans-serif, say so for both Latin and Chinese text. A practical stack for a multilingual interface might look like this:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;&#xA;&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;&#xA;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt; 1&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 2&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 3&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 4&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 5&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 6&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 7&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 8&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 9&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;10&#xA;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&#xA;&lt;td class=&#34;lntd&#34;&gt;&#xA;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-css&#34; data-lang=&#34;css&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;nt&#34;&gt;body&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;k&#34;&gt;font-family&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;n&#34;&gt;Inter&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;o&#34;&gt;-&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;apple-system&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;n&#34;&gt;BlinkMacSystemFont&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;s2&#34;&gt;&amp;#34;PingFang SC&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;s2&#34;&gt;&amp;#34;Hiragino Sans GB&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;s2&#34;&gt;&amp;#34;Microsoft YaHei&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;kc&#34;&gt;sans-serif&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&lt;/div&gt;&lt;p&gt;The exact order depends on the product and supported platforms, but the intention should be clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;keep the preferred Latin or brand typeface first;&lt;/li&gt;&#xA;&lt;li&gt;include an appropriate Chinese sans-serif family;&lt;/li&gt;&#xA;&lt;li&gt;include a suitable Windows alternative when Windows is supported;&lt;/li&gt;&#xA;&lt;li&gt;end with the generic &lt;code&gt;sans-serif&lt;/code&gt; family.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Avoid placing &lt;code&gt;SimSun&lt;/code&gt;, &lt;code&gt;Songti SC&lt;/code&gt;, or another Chinese serif face inside a stack that is otherwise intended to be sans-serif. Those fonts can be excellent choices for editorial reading, literature, or a deliberately serif design. They are simply the wrong fallback for a sans-serif interface.&lt;/p&gt;&#xA;&lt;p&gt;If the design intentionally uses a Chinese serif font, declare that choice explicitly rather than relying on whichever fallback the browser happens to find.&lt;/p&gt;&#xA;&lt;h2 id=&#34;do-not-solve-it-by-overriding-every-font&#34;&gt;Do Not Solve It by Overriding Every Font&#xA;&lt;/h2&gt;&lt;p&gt;A frequently shared workaround applies PingFang to every element:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;&#xA;&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;&#xA;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3&#xA;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&#xA;&lt;td class=&#34;lntd&#34;&gt;&#xA;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-css&#34; data-lang=&#34;css&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;o&#34;&gt;*&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;k&#34;&gt;font-family&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;PingFang SC&amp;#34;&lt;/span&gt; &lt;span class=&#34;cp&#34;&gt;!important&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&lt;/div&gt;&lt;p&gt;This removes the visible serif fallback, but it also removes much of the site&amp;rsquo;s typography.&lt;/p&gt;&#xA;&lt;p&gt;It can replace icon fonts, change monospace code, alter Latin headings, override component-specific styles, and erase intentional serif typography. In other words, it fixes one fallback decision by taking all font decisions away from the page.&lt;/p&gt;&#xA;&lt;p&gt;A safer solution should change only the missing Chinese glyphs while leaving Latin text, numbers, icons, code, and deliberate serif choices alone.&lt;/p&gt;&#xA;&lt;h2 id=&#34;a-targeted-fallback-rule&#34;&gt;A Targeted Fallback Rule&#xA;&lt;/h2&gt;&lt;p&gt;The core technique used by this project is an &lt;code&gt;@font-face&lt;/code&gt; rule with &lt;code&gt;unicode-range&lt;/code&gt;. The following shortened example tells Safari to use PingFang only for the listed Chinese character ranges when a page requests Arial:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;&#xA;&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;&#xA;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;4&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;5&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;6&#xA;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&#xA;&lt;td class=&#34;lntd&#34;&gt;&#xA;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-css&#34; data-lang=&#34;css&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;@&lt;/span&gt;&lt;span class=&#34;k&#34;&gt;font-face&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;nt&#34;&gt;font-family&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;Arial&amp;#34;&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;nt&#34;&gt;src&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;nt&#34;&gt;local&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;PingFangSC-Regular&amp;#34;&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;);&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;nt&#34;&gt;unicode-range&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;nt&#34;&gt;U&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;+&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;3000-303F&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;nt&#34;&gt;U&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;+&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;3400-4DBF&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;,&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;nt&#34;&gt;U&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;+&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;4E00-9FFF&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;nt&#34;&gt;U&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;+&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;F900-FAFF&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;nt&#34;&gt;U&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;+&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;FF00-FFEF&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&lt;/div&gt;&lt;p&gt;Latin characters still come from Arial. Chinese characters that Arial cannot provide come from PingFang. The page therefore keeps its existing Latin metrics and visual identity while gaining a predictable Chinese sans-serif fallback.&lt;/p&gt;&#xA;&lt;p&gt;The complete project also covers bold text, Traditional Chinese, extended character ranges, common Latin font names, and Windows Chinese font names. The snippet above is only an explanation, not the full stylesheet.&lt;/p&gt;&#xA;&lt;p&gt;You can review or download the maintained file here:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/Jingyuan-Zheng/Safari-CJK-Font-Fallback-Fix/blob/main/safari-fix.css&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;&#xA;    &gt;Download the complete &lt;code&gt;safari-fix.css&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/Jingyuan-Zheng/Safari-CJK-Font-Fallback-Fix&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;&#xA;    &gt;View Safari CJK Font Fallback Fix on GitHub&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;If the project fixes the problem for you, consider giving it a &lt;strong&gt;Star on GitHub&lt;/strong&gt;. It helps other Safari users and web developers find the solution.&lt;/p&gt;&#xA;&lt;h2 id=&#34;a-user-fix-and-a-website-fix-are-different&#34;&gt;A User Fix and a Website Fix Are Different&#xA;&lt;/h2&gt;&lt;p&gt;When you do not control the affected websites, the downloadable Safari stylesheet is a practical compatibility layer. For a site you maintain, correcting the site&amp;rsquo;s own font stack is preferable because every visitor benefits without installing anything.&lt;/p&gt;&#xA;&lt;h2 id=&#34;what-designers-should-check&#34;&gt;What Designers Should Check&#xA;&lt;/h2&gt;&lt;p&gt;CJK typography should be part of design review, not left entirely to the browser.&lt;/p&gt;&#xA;&lt;p&gt;A useful review does not require every team member to read Chinese. Check the visible form of the text:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Does Chinese body text use a serif or sans-serif style that matches the design?&lt;/li&gt;&#xA;&lt;li&gt;Do navigation labels and buttons look consistent with nearby Latin text?&lt;/li&gt;&#xA;&lt;li&gt;Do regular and bold Chinese text have a clear but stable weight difference?&lt;/li&gt;&#xA;&lt;li&gt;Are punctuation, brackets, and full-width symbols visually consistent?&lt;/li&gt;&#xA;&lt;li&gt;Does the design still work when a single line mixes Chinese, English, and numbers?&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Chinese characters are visually dense, so differences in weight and spacing can be more obvious than expected. A Latin-only mock-up is not enough to validate a multilingual interface.&lt;/p&gt;&#xA;&lt;h2 id=&#34;what-developers-should-test&#34;&gt;What Developers Should Test&#xA;&lt;/h2&gt;&lt;p&gt;Use actual Chinese content in browser testing. A few translated menu labels are more useful than placeholder boxes or repeated sample characters.&lt;/p&gt;&#xA;&lt;p&gt;At minimum, test:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Safari and Chrome on macOS;&lt;/li&gt;&#xA;&lt;li&gt;normal and bold text;&lt;/li&gt;&#xA;&lt;li&gt;headings, navigation, buttons, form controls, and code blocks;&lt;/li&gt;&#xA;&lt;li&gt;Simplified and Traditional Chinese when both are supported;&lt;/li&gt;&#xA;&lt;li&gt;mixed Chinese, English, numbers, and punctuation;&lt;/li&gt;&#xA;&lt;li&gt;the production build after web fonts finish loading.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;In browser developer tools, inspect the font that actually renders the Chinese glyphs, not only the computed &lt;code&gt;font-family&lt;/code&gt; declaration. The computed stack may say Arial or Inter even though a different local font supplied the Chinese characters.&lt;/p&gt;&#xA;&lt;p&gt;Also test web-font failure. A blocked, slow, or partially loaded font should fall back to a typeface from the same broad category rather than unexpectedly switching from sans-serif to serif.&lt;/p&gt;&#xA;&lt;h2 id=&#34;privacy-and-limitations&#34;&gt;Privacy and Limitations&#xA;&lt;/h2&gt;&lt;p&gt;The project is CSS only. It contains no JavaScript, analytics, telemetry, or access to browsing history.&lt;/p&gt;&#xA;&lt;p&gt;As a Safari user stylesheet, it cannot reliably change text drawn into images or canvas elements, and some embedded or isolated components may not inherit its rules. No generic stylesheet can perfectly infer whether every serif choice was intentional, which is another reason the website&amp;rsquo;s own font stack remains the best place to solve the problem.&lt;/p&gt;&#xA;&lt;h2 id=&#34;the-broader-lesson&#34;&gt;The Broader Lesson&#xA;&lt;/h2&gt;&lt;p&gt;&lt;code&gt;sans-serif&lt;/code&gt; is a design category, not a guarantee that every writing system will receive the expected local font. A multilingual font stack should describe the intended result for the scripts the product actually supports.&lt;/p&gt;&#xA;&lt;p&gt;For Chinese interfaces, the essential principle is simple: pair a Latin sans-serif design with an explicit Chinese sans-serif fallback, preserve deliberate serif typography, and test the rendered fonts in the browsers your users rely on.&lt;/p&gt;&#xA;&lt;h2 id=&#34;references&#34;&gt;References&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://support.apple.com/guide/safari/ibrw1075/mac&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;&#xA;    &gt;Apple: Change Advanced settings in Safari on Mac&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://bugs.webkit.org/show_bug.cgi?id=10874&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;&#xA;    &gt;WebKit Bug 10874: CJK font selection and language information&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/Jingyuan-Zheng/Safari-CJK-Font-Fallback-Fix&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;&#xA;    &gt;Safari CJK Font Fallback Fix on GitHub&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;</description>
        </item></channel>
</rss>
