I have this html and css. How do I push Menu A content to new line? below the titles?
.root {
display: flex;
}
.content {
order: 2;
}
<div class="root">
<div class="title">Menu A</div>
<div class="content">Menu A content</div>
<div class="title">Menu B</div>
</div>