font-style
Google Web Fonts を使用していますが、 /を正しく定義する方法が完全にはわかりませんfont-weight
。
通常の本文コピーに必要な font-weight としてnormal
orを定義することの違いは何ですか?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>