Кто-нибудь знает, как позволить меньшей красной полосе определить ширину среднего столбца и позволить обернуть розовый абзац, чтобы уменьшить его размер до красного?
* {
margin: 0;
padding: 0;
border: 0;
}
<div style="display: flex; flex-direction: row;">
<div style="background-color: blue; flex: 1;"></div>
<div style="display: flex; flex-direction: column;">
<p style="background-color: red;">
i want this paragraph
to set the width but i can't
figure it out :(</p>
<p style="background-color: pink;">i want this
paragraph to wrap to fit the
width of
the paragraph above asdfdasf
</p>
</div>
<div style="background-color: indigo; flex: 1;"></div>
</div>