我正在使用 Google Web Fonts,但我不完全确定如何正确定义font-style
/ font-weight
。
normal
定义或400
作为常规正文副本所需的字体粗细有什么区别?
我只是定义font-style: italic;
或引用斜体字体吗?
代码:
<link href="http://fonts.googleapis.com/css?family=Gudea:400,700,400italic">
<style>
body {
font: 1.25em/1.5 Gudea, Helvetica, Arial, sans-serif;
}
em {
font-style: italic;
/* or:
font-style: normal;
font-family: "Gudea Italic";
*/
}
strong {
font-weight: bold;
/* or:
font-weight: 700;
*/
}
</style>