--- id: 587d78ab367417b2b2512af1 title: Add Flex Superpowers to the Tweet Embed challengeType: 0 videoUrl: '' localeTitle: Añadir los superpoderes de Flex al visualizador de Tweet --- ## Description
A la derecha se encuentra un listado de tweets insertados que se utilizará como ejemplo práctico. Algunos de los elementos se verían mejor con un diseño diferente. En el último desafío se utilizó la propiedad display: flex . Aquí lo añadirá a algunas partes en el listado de tweets para comenzar a ajustar su posicionamiento.
## Instructions
Agregue la propiedad css display: flex a los siguientes elementos. Tenga en cuenta que los selectores css ya están configurados: header, .profile-name y .follow-btn del encabezado, .follow-btn del encabezado, el h3 y el h4 del encabezado, el footer , y los .stats en la parte inferior de .stats .
## Tests
```yml tests: - text: Su header debe tener una propiedad de display configurada para flexionar. testString: 'assert($("header").css("display") == "flex", "Your header should have a display property set to flex.");' - text: Su footer debe tener una propiedad de display configurada para flexionar. testString: 'assert($("footer").css("display") == "flex", "Your footer should have a display property set to flex.");' - text: Tu h3 debería tener una propiedad de display configurada para flexionar. testString: 'assert($("h3").css("display") == "flex", "Your h3 should have a display property set to flex.");' - text: Tu h4 debería tener una propiedad de display configurada para flexionar. testString: 'assert($("h4").css("display") == "flex", "Your h4 should have a display property set to flex.");' - text: Su .profile-name debe tener una propiedad de display configurada para flexionar. testString: 'assert($(".profile-name").css("display") == "flex", "Your .profile-name should have a display property set to flex.");' - text: Su .follow-btn debe tener una propiedad de display configurada para flexionar. testString: 'assert($(".follow-btn").css("display") == "flex", "Your .follow-btn should have a display property set to flex.");' - text: Sus .stats deben tener una propiedad de display configurada para flexionar. testString: 'assert($(".stats").css("display") == "flex", "Your .stats should have a display property set to flex.");' ```
## 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 ```