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

13 lines
479 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
title: Use the flex-direction Property to Make a Column
localeTitle: استخدم خاصية الاتجاه المرن لعمل عمود
---
## استخدم خاصية الاتجاه المرن لعمل عمود
لتكديس العناصر الفرعية للحاوية المرنة فوق بعضها البعض ، يمكنك تغيير _الاتجاه المرن_ بالطريقة التالية:
`#main-container {
display: flex;
flex-direction: column;
}
`