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

449 B
Raw Blame History

title localeTitle
Apply the flex-direction Property to Create a Column in the Tweet Embed 应用flex-direction属性在Tweet Embed中创建一个列

应用flex-direction属性在Tweet Embed中创建一个列

通过将属性显式添加到css将flex方向从其默认行更改为将使得句柄显示在名称旁边。

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