There are two types of elements in my project:
- Type "A" - a text block
- Type "B" - a graphical block
I am looking to create a responsive layout for these elements. On small resolution screens, I want them to be arranged like this:
"A" "A"
"B"
and on larger screens, the layout should change to look like this:
"A" "B" "A"
Any suggestions on how I can achieve this? I am currently using tailwindcss but open to pure CSS solutions as well.