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

Keep a specific flexbox child from overflowing its container

$
0
0

I have the following layout:

.wrapper {  width: 250px;  border: 1px solid #000000;}.container {  display: inline-flex;  flex-direction: row;  min-width: 100%;}.child {  min-width: fit-content;  flex-basis: 0px;  flex-shrink: 1;  margin: 5px;}.first {  background: yellow;  flex: 0 1 auto;}.second {  background: red;  flex: 0 1 1;}.third {   background: blue;   flex: 0 1 1;}
<div class="wrapper">  <div class="container"><div class="first child">first</div><div class="container child second"><div class="child">        child</div><div class="child">        child</div><div class="child">        child</div><div class="child">        child</div><div class="child">        child</div></div><div class="third child">third</div></div></div>

My problem is that, in the case of overflowing, i need to show a scroll on the second child alone, meaning the first and third child should always be visible, how can i do this?


Viewing all articles
Browse latest Browse all 1305

Trending Articles



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