Looking for a solution to arrange UI components of varying dimensions in a grid layout? The challenge is to have each row be equal to the height of the tallest component in that row, with no fixed number of columns. Components should maintain their original dimensions and automatically wrap to the next row when needed.
Bootstrap requires specifying column widths like col-xs-number
, but it's not feasible when the number of items per row is dynamic.
Note: The application uses bootstrap version 3 and cannot upgrade to V4.
Wondering if there's a way to achieve this design?