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

14 lines
654 B
Markdown
Raw Normal View History

---
title: Apply the flex-direction Property to Create a Column in the Tweet Embed
localeTitle: قم بتطبيق الخاصية ذات الاتجاه المرن لإنشاء عمود في تغريدة Tweet
---
## قم بتطبيق الخاصية ذات الاتجاه المرن لإنشاء عمود في تغريدة Tweet
سيؤدي تغيير اتجاه المرن من صفه الافتراضي إلى العمود عن طريق إضافة الخاصية إلى css بشكل واضح إلى إظهار المقبض لإخفاء الاسم.
`header .profile-name {
display: flex;
flex-direction: column;
margin-left: 10px;
}
`