freeCodeCamp/guide/spanish/certifications/responsive-web-design/css-flexbox/use-the-justify-content-pro.../index.md

14 lines
758 B
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
title: Use the justify-content Property in the Tweet Embed
localeTitle: Use la propiedad justify-content en el Tweet Insertar
---
## Use la propiedad justify-content en el Tweet Insertar
Los diferentes valores para `justify-content` del desafío anterior son:
* `flex-start` alinea los elementos con el inicio del contenedor flexible.
* `flex-end` alinea los elementos con el extremo del contenedor flexible.
* `space-between` alinea los elementos con el centro del eje principal, con espacio adicional colocado entre los elementos.
* `space-around` similar al `space-between` pero el espacio se distribuye alrededor de todos los elementos.
Lea [más sobre `justify-content`](https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content) .