freeCodeCamp/guide/russian/certifications/responsive-web-design/css-flexbox/apply-the-flex-direction-pr.../index.md

16 lines
684 B
Markdown
Raw Normal View History

2018-10-12 20:00:59 +00:00
---
title: Apply the flex-direction Property to Create a Column in the Tweet Embed
localeTitle: Примените свойство flex-direction для создания столбца в вставке Tweet
---
## Примените свойство flex-direction для создания столбца в вставке Tweet
Изменив направление гибкости от значения по умолчанию от строки до столбца, явно добавив свойство в css, ручка будет показана ниже.
```css
header .profile-name {
display: flex;
flex-direction: column;
margin-left: 10px;
}
```