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

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