My layout goes
Row 1:
Col 1, Col 2
Row 2:
Col 1, Col 2
On a mobile view only, how can I switch Row 2 so it’s Col 2, Col 1.
I’ve tried giving the row a class and adding this CSS but it didn’t work:
@media (max-width: 767px){
.row_reverse{
display: flex;
flex-wrap: wrap;
flex-direction: column-reverse;
}
}