I'm new to utilizing bootstrap in web development. I've been exploring various examples of bootstrap templates that include tables, and I noticed that when I resize my browser window, the table adjusts accordingly. Now, I'm curious to know if there's a way to shift cells from one row to another within the table. To clarify further:
If I have my browser open in a large window, I see my table with one row and 5 columns, like this:
X X X X X
Then, as I resize the browser, I'd like the table to appear as follows:
X X X
X X
And continue to adjust like so:
X X
X X
X
Even smaller...
X
X
X
X
X
Is this achievable or am I just wishful thinking?
I specifically mentioned using bootstrap for this, but I'm open to any alternative solutions as well!