Files
2018-10-16 21:32:40 +05:30

16 lines
449 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Apply the flex-direction Property to Create a Column in the Tweet Embed
localeTitle: 应用flex-direction属性在Tweet Embed中创建一个列
---
## 应用flex-direction属性在Tweet Embed中创建一个列
通过将属性显式添加到css将flex方向从其默认行更改为将使得句柄显示在名称旁边。
```css
header .profile-name {
display: flex;
flex-direction: column;
margin-left: 10px;
}
```