Пример
Устанавливает различный стиль шрифта для трех параграфов:<html>
<head>
<meta charset="utf-8" />
<style>
p.normal { font-style:normal; }
p.italic { font-style:italic; }
p.oblique { font-style:oblique; }
</style>
</head>
<body>
<p class="normal">Это параграф, нормальный.</p>
<p class="italic">Это параграф, курсив.</p>
<p class="oblique">Это параграф, наклонный.</p>
</body>
</html>
Определение и использование
Свойство font-style устанавливает стиль шрифта для текста.
| Значение по умолчанию: | normal |
|---|---|
| Унаследованный: | да |
| Версия: | CSS1 |
| Синтакс JavaScript: | object.style.fontStyle="italic" |
Поддержка браузеров
Свойство font-style поддерживается во всех ведущих браузерах.
Примечание: Ни одна из версий Internet Explorer (включая IE8) не поддерживает значение "inherit".
Property Values
| Value | Description | Play it |
|---|---|---|
| armenian | The marker is traditional Armenian numbering | Play it » |
| circle | The marker is a circle | Play it » |
| cjk-ideographic | The marker is plain ideographic numbers | Play it » |
| decimal | The marker is a number. This is default for <ol> | Play it » |
| decimal-leading-zero | The marker is a number with leading zeros (01, 02, 03, etc.) | Play it » |
| disc | The marker is a filled circle. This is default for <ul> | Play it » |
| georgian | The marker is traditional Georgian numbering | Play it » |
| hebrew | The marker is traditional Hebrew numbering | Play it » |
| hiragana | The marker is traditional Hiragana numbering | Play it » |
| hiragana-iroha | The marker is traditional Hiragana iroha numbering | Play it » |
| inherit | The value of the listStyleType property is inherited from parent element | |
| katakana | The marker is traditional Katakana numbering | Play it » |
| katakana-iroha | The marker is traditional Katakana iroha numbering | Play it » |
| lower-alpha | The marker is lower-alpha (a, b, c, d, e, etc.) | Play it » |
| lower-greek | The marker is lower-greek | Play it » |
| lower-latin | The marker is lower-latin (a, b, c, d, e, etc.) | Play it » |
| lower-roman | The marker is lower-roman (i, ii, iii, iv, v, etc.) | Play it » |
| none | No marker is shown | Play it » |
| square | The marker is a square | Play it » |
| upper-alpha | The marker is upper-alpha (A, B, C, D, E, etc.) | Play it » |
| upper-latin | The marker is upper-latin (A, B, C, D, E, etc.) | Play it » |
| upper-roman | The marker is upper-roman (I, II, III, IV, V, etc.) | Play it » |
Была ли эта информация полезной?

