I'm currently working on a form using skeleton css and initially set it up with a three-column layout. However, I found that this created too much white space due to varying content lengths in each column. I would like to switch to a horizontal layout similar to the one shown below:
Textbox1 Textbox2 Textbox3
Textbox4 Textbox5 Textbox6
For mobile, I want the layout to collapse like this:
Textbox1
Textbox2
Textbox3
Textbox4
Textbox5
Textbox6
Currently, my solution involves wrapping each textbox in its own 'one-third' column. I'm wondering if there is a cleaner way to achieve this layout?
Thank you