Does anyone know of a #CSS-only way to reorder the rows of items in flexbox, such that whichever row contains a specific item, is always the bottom row?
Similar to how on (older?) Windows versions, when you had multiple rows of tabs in a tab control, the bottom-most row would always be the one containing the currently-active tab, reordering the rows if necessary.
@jaredwhite Unfortunately, that only seems to order individual items - the way the Windows implementation works is that the entire row which *contains* the item is moved, but the item remains within the same position within that row.
(Just moving the active item to the first position would not be great UX-wise; it could very easily look like selecting the item did nothing, because the first item always remains selected, and there's no 'muscle memory' that can be built of where a tab is relatively located)