--- title: font-weight slug: Web/CSS/font-weight tags: - Referencia_CSS translation_of: Web/CSS/font-weight ---
{{ CSSRef() }}
A propeidade {{ Cssxref("font-weight") }} especifica o peso ou o traço da fonte:
font-weight:
normal
| bold
| bolder
| lighter
| 100
| 200
| 300
| 400
| 500
| 600
| 700
| 800
| 900
| {{ Cssxref("inherit") }}
<p>
Alice começava a ficar muito cansada de sentar-se junto à irmã no banco e
de não ter nada para fazer: uma ou duas vezes ela espiou o livro que a irmã
estava a ler, mas não tinha fotos nem conversas nele, «e qual é a utilização
de um livro», pensou Alice, «sem fotos ou conversas?»
</p>
<div>Sou quatro vezes grosso<br/>
<span>Sou mais leve</span>
</div>
/* Definir o texto do parágrafo como negrito. */ p { font-weight: bold; } /* Defina o texto div para dois passos mais grossos do que o normal, mas menos que um negrito padrão. */ div { font-weight: 600; } /* Define o texto dentro da tag span para ser um passo mais leve que o pai. */ span { font-weight: lighter; }
{{EmbedLiveSample("Exemplos","400","300")}}
Navegador | Versão mais antiga |
---|---|
Internet Explorer | 3 |
Netscape | 4 |
Opera | 3.5 |
{{ Cssxref("font") }} {{ Cssxref("font-family") }}, {{ Cssxref("font-size") }}, {{ Cssxref("font-size-adjust") }}, {{ Cssxref("font-style") }}, {{ Cssxref("font-variant") }}, {{ Cssxref("font-weight") }}, {{ Cssxref("line-height") }}
Categorias
Interwiki Language Links
{{ languages( { "en": "en/CSS/font-weight", "fr": "fr/CSS/font-weight" } ) }}