最近在研究
vitepress
的主題,準備把部落格從hugo
改成vitepress
(因為vitepress
的程式區塊比hugo
的好看).
在寫主題時,發現我添加的自定義字體設置 font-weight
怎麼也不生效,但是在 hugo
中是可以的.
最後一個個 F12
一個個樣式的去嘗試,發現 vitepress
的 body 會帶下面的樣式:
text-rendering: optimizeLegibility;
direction: ltr;
font-synthesis: style;
-webkit-font-smoothing: antialiased;
問題就是出在 font-synthesis: style;
上,改成 weight
即可.