本文介绍了CSS中的Roboto字体的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在prestashop中使用 Roboto字体。我已经收到了.psd文件中的设计,图形设计师使用的字体为 Roboto Medium和 Roboto Regular。我是否正确理解,当我想使用Roboto Normal时可以申请:

I would like to use "Roboto" font in prestashop. I've received design in .psd files and graphic designer used fonts "Roboto Medium" and "Roboto Regular". Do i understand correctly, that when i want to use Roboto Normal I can apply:

font- family: "Roboto"
font-weight: 400

,当我想使用Roboto Medium时,我应该申请:

and when i want to use Roboto Medium I should apply:

font- family: "Roboto"
font-weight: 500

换句话说,权重400和500分别等于Roboto Normal和Roboto Medium?

In other words, are weights 400 and 500 respectively equal to Roboto Normal and Roboto Medium?

推荐答案

确保关闭CSS行。

font-family: "Roboto";
font-weight: 400;

是的,您的体重是正确的。

Yes, your weights are correct.

font-weight: 400; //normal
font-weight: 500; //medium
font-weight: 700; //bold

请阅读关于 font-weight ,根据字体的不同,它并不总是可用。但是,根据,您应该可以毫无问题地使用这些权重。

Please read this regarding font-weight, it's not always available depending on the font. But, according to Google, you should be able to use those weights without a problem.

这篇关于CSS中的Roboto字体的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-28 13:58