Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为我的网站更改字体及其行高。但是我忘记了原始设置,我现在不知道我的网站的字体和它们的行高是否正常和相对。这是一篇关于博客收入的示例文章。您可以在此处查看所有字体 h1 h2 和 p。
请看一下,让我知道是否需要设置,字体大小或行高。谢谢
根据您提供的网站参考,您需要同时设置 font-size 和 line-height。以下是 h1、h2 和 p 的设置
h1{font-size: 35px; font-weight: 600; line-height: 38px;} h2{font-size: 18px; font-weight: 600; line-height: 28px;} p{font-size: 16px; font-weight: 300; line-height: 25px;}
希望这可以帮助。