← Volver

Tutorial Interactivo de Flexbox

Flex Direction

Justify Content

Align Items

Flex Wrap

Gap

10px
1
2
3
4
5

Código CSS Actual:

.flex-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 10px;
}