Я пытаюсь установить макет flexbox с тремя столбцами, где левый и правый столбцы имеют фиксированную ширину, а центральный столбец сгибается, чтобы заполнить доступное пространство.
Несмотря на настройку размеров столбцов, они все еще сжимаются, когда окно сжимается.
Кто-нибудь знает, как это сделать?
Еще одна вещь, которую мне нужно будет сделать, - это скрыть правый столбец на основе взаимодействия с пользователем, и в этом случае левый столбец сохранит фиксированную ширину, но центральный столбец заполнит остальную часть пространства.
#container {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    max-width: 1200px;
}
.column.left {
    width: 230px;
}
.column.right {
    width: 230px;
    border-left: 1px solid #eee;
}
.column.center {
    border-left: 1px solid #eee;
}<div id="container">
    <div class="column left">
        <p>Anxiety was a blog series that ran in the New York Times Opinion section from January 2012 to July 2013. It featured essays, fiction, and art by a wide range of contributors that explored anxiety from scientific, literary, and artistic perspectives.</p>
    </div>
    <div class="column center">
        <img src="http://i.imgur.com/60PVLis.png" width="100" height="100" alt="">
    </div>
    <div class="column right">
        Balint Zsako
        <br/> Someones Knocking at My Door
        <br/> 01.12.13
    </div>
</div>