Quantcast
Channel: Active questions tagged flexbox - Stack Overflow
Viewing all articles
Browse latest Browse all 1305

How to wrap all flex columns except the first one

$
0
0

(Desired outcome: https://i.sstatic.net/CUJuwwbr.png)

I'm looking for a solution where the 4th box goes beneath the 2nd and then the 3rd below the 4th (new position) when resizing the window horizontal. The 1st box should stay the same width.

I tried putting a container around 2-4 with flex-wrap, but the 1st box gets resized.

.container {    display: flex;    margin: auto;    max-width: 1250px;    min-width: 630px;}.content {    display: flex;    width: 300px;    height: 300px;}.content_container {    display: flex;    flex-wrap: wrap;}
<div class="container"><div class="content">1</div><div class="content_container"><div class="content">2</div><div class="content">3</div><div class="content">4</div></div></div></div>

Viewing all articles
Browse latest Browse all 1305

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>