Suppose, I have 3 divs A, B and C inside a div which is a flex.
[ABC....]
I want to distribute remaining space only between B and C i.e. I want to achieve this
[AB....C]
Is there some property that helps me specify to distribute space between B and C, or in other words make B stack with A?
Note: I want to do this without any div nesting.
Thank you.