So, I have this div container that spans across the page (please see the picture).
<div class="container">
<div class="A">Content length changes</div>
<div class="B">Width dependent on "A"</div>
<div class="C">fixed 27px width</div>
<div class="D">fixed 27px width</div>
</div>
The issue is that the width of "A" is dynamic and it changes which means "B" width also changes (Although "B" will have minimum width of 27px).
I can measure the width of the "A" and change the css using jQuery but I want to know if there is a way to handle the width variables for "A" and "B" simply using CSS.

min-width? change it to 'width'. Please provide fiddleflex-groworflex-shrink.