freeCodeCamp/guide/portuguese/css/properties/display-property/index.md

28 lines
1017 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: Display Property
localeTitle: Propriedade de exibição
---
## Propriedade de exibição
A propriedade display especifica o tipo de caixa usado para um elemento HTML. Tem 20 valores possíveis de palavras-chave. Os mais usados são:
```css
.none {display: none;}
.block {display: block;}
.inline-block {display: inline-block;}
.inline {display: inline;}
.flex {display: flex;}
.inline-flex {display: inline-flex;}
.inline-table {display: inline-table;}
.table {display: table;}
.inherit {display: inherit;}
.initial {display: initial;}
```
#### Mais Informações:
Documentos e lista completa de valores de palavras-chave: [MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/display)
Suporte ao Navegador: [caniuse](http://caniuse.com/#search=display)
Um Guia Completo para o Flexbox: [css-tricks](https://css-tricks.com/snippets/css/a-guide-to-flexbox/)