--- id: 587d78ac367417b2b2512af7 title: Utiliza la propiedad justify-content en el tweet Insertado challengeType: 0 videoUrl: 'https://scrimba.com/p/pVaDAv/c43GgTa' forumTopicId: 301115 dashedName: use-the-justify-content-property-in-the-tweet-embed --- # --description-- El último desafío mostró un ejemplo de la propiedad `justify-content`. Para el tweet insertado, esta propiedad se puede aplicar para alinear los elementos en el `.profile-name`. # --instructions-- Agrega la propiedad CSS `justify-content` al `.profile-name` y establece el valor en cualquiera de las opciones del último desafío. # --hints-- Tu `.follow-btn` debe mostrarse en la página. Asegúrate de desactivar las extensiones, como los bloqueadores de anuncios. ```js assert($('.follow-btn').length > 0 && $('.follow-btn').css('display') !== 'none'); ``` El elemento `.profile-name` debe tener la propiedad `justify-content` establecida en cualquiera de estos valores: `center`, `flex-start`, `flex-end`, `space-between`, `space-around`, o `space-evenly`. ```js 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|space-evenly)\s*;/g ) ); ``` # --seed-- ## --seed-contents-- ```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
``` # --solutions-- ```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
```