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

684 B

title localeTitle
Apply the flex-direction Property to Create a Column in the Tweet Embed Примените свойство flex-direction для создания столбца в вставке Tweet

Примените свойство flex-direction для создания столбца в вставке Tweet

Изменив направление гибкости от значения по умолчанию от строки до столбца, явно добавив свойство в css, ручка будет показана ниже.

header .profile-name { 
    display: flex; 
    flex-direction: column; 
    margin-left: 10px; 
  }