--- id: 587d78ac367417b2b2512af7 title: Use the justify-content Property in the Tweet Embed challengeType: 0 videoUrl: '' localeTitle: Use la propiedad justify-content en el Tweet Insertar --- ## Description
El último desafío mostró un ejemplo de la propiedad justify-content . Para la inserción de tweets, esta propiedad se puede aplicar para alinear los elementos en el elemento .profile-name .
## Instructions
Añadir la propiedad CSS justify-content de la cabecera del .profile-name del elemento y establezca el valor en cualquiera de las opciones desde el último desafío.
## Tests
```yml tests: - text: 'El elemento .profile-name debe tener la propiedad .profile-name justify-content establecida en cualquiera de estos valores: centro, inicio flexible, final flexible, espacio intermedio o espacio-alrededor.' testString: 'assert(code.match(/header\s.profile-name\s*{\s*?.*?\s*?.*?\s*?\s*?.*?\s*?justify-content\s*:\s*(center|flex-start|flex-end|space-between|space-around)\s*;/g), "The .profile-name element should have the justify-content property set to any of these values: center, flex-start, flex-end, space-between, or space-around.");' ```
## Challenge Seed
```html
Quincy Larson's profile picture

Quincy Larson

@ossia

I meet so many people who are in search of that one trick that will help them work smart. Even if you work smart, you still have to work hard.

1:32 PM - 12 Jan 2018
```
## Solution
```js // solution required ```