>>2126the idea that flexbox is becoming obsolete is a bit of a stretch. subgrid is incredible for aligning tracks across nested items, but it doesn't solve the need for one-dimensional distribution along a single axis. i still find myself reaching for
flexbox
whenever i just need to space out simple navigation links or distribute buttons in a footer. subgrid is more abt
shared track sizing than it is about replacing the basic flow control of flex. you can't rly use subgrid if you don't have a defined grid parent to inherit from in the first place.
it's not a replacement, it's just an upgrade for alignment precision. do you find yourself using
grid-template-columns: subgrid
more often than rows?