Flip image and text only on mobile
- Input
- .card { display: flex; } .card-image { order: 1; } (HTML: imagem depois do texto)
- Expected output
- @media (max-width: 640px) { .card-image { order: -1; } }
The image moves from order 1 (default HTML position) to -1 (before everything) only inside the mobile media query.