diff options
Diffstat (limited to 'files/pt-pt/web/css/font-style/index.html')
-rw-r--r-- | files/pt-pt/web/css/font-style/index.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/files/pt-pt/web/css/font-style/index.html b/files/pt-pt/web/css/font-style/index.html new file mode 100644 index 0000000000..55bd8de94f --- /dev/null +++ b/files/pt-pt/web/css/font-style/index.html @@ -0,0 +1,40 @@ +--- +title: font-style +slug: Web/CSS/font-style +tags: + - Referencia_CSS +translation_of: Web/CSS/font-style +--- +<p>{{ CSSRef() }}</p> + +<h2 id="Sum.C3.A1rio" name="Sum.C3.A1rio">Sumário</h2> + +<p>A propriedade <strong>font-style</strong> especifica normal (também conhecido como<em>upright</em> ou<em>roman</em>), itálico, e oblíquo faces dentro do<em>font-family</em>.</p> + +<p>{{cssinfo}}</p> + +<h2 id="Sintaxe">Sintaxe</h2> + +<p><code>font-style:</code> <code>normal</code> | <code>italic</code> | <code>oblique</code></p> + +<h3 id="Valores" name="Valores">Valores</h3> + +<dl> + <dt>normal, oblique, italic </dt> + <dd>Especifica que o<em>user-agent</em> deve escolher a tipografia 'normal', 'oblique' ou 'italic' dentro do {{ Cssxref("font-family") }}.</dd> +</dl> + +<h2 id="Exemplos" name="Exemplos">Exemplos</h2> + +<pre>h1 { font-style: italic } +p { font-style: oblique } + +</pre> + +<h3 id="Especifica.C3.A7.C3.B5es" name="Especifica.C3.A7.C3.B5es">Especificações</h3> + +<ul> + <li><a class="external" href="http://www.w3.org/TR/CSS1#font-style">CSS 1</a></li> + <li><a class="external" href="http://www.w3.org/TR/CSS21/fonts.html#propdef-font-style">CSS 2.1</a></li> + <li><a class="external" href="http://www.w3.org/TR/css3-fonts/#font-style">css3-fonts</a></li> +</ul> |