freeCodeCamp/guide/portuguese/css/properties/font-weight-property/index.md

22 lines
668 B
Markdown
Raw Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

---
title: Font Weight Property
localeTitle: Propriedade de peso da fonte
---
## Propriedade de peso da fonte
O peso da fonte pode ser definido como maior ou menor usando a propriedade `font-weight` . Os valores disponíveis para `font-weight` são `normal` , `bold` , `lighter` , `bolder` e um valor numérico.
```css
font-weight: lighter;
font-weight: bolder;
font-weight: bold;
font-weight: light;
font-weight: 100;
font-weight: 900;
```
Os valores mais ousados e ousados aumentam o peso da fonte e a luz e diminuem o peso.
#### Mais Informações
[Documentação MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)