Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flexbox and overflow: hidden not working properly

Tags:

I have a bit of HTML:

<div class="flex">   <div class="red">     <div class="example">       <div class="wide">       </div>     </div>       </div>   <div class="orange"></div>   <div class="yellow"></div>   <div class="green"></div>   <div class="blue"></div>   <div class="indigo"></div> </div>  <div class="flex">   <div class="red"></div>   <div class="orange"></div>   <div class="yellow"></div>   <div class="green"></div>   <div class="blue"></div>   <div class="indigo"></div> </div> 

And my CSS:

.flex {   display: -webkit-box;   display: flex;    height: 100px;   width: 100%; }  .flex > div {   flex-grow: 1;   flex-shrink: 1;   flex-basis: auto;    -webkit-flex-grow: 1;   -webkit-flex-shrink: 1;    margin: 15px; }  .example {   overflow: hidden;   width: 100%;   border: 1px solid black; }  .example .wide {   width: 400px; } 

Now, the problem here is, if I have a div inside an element that is a flexbox and that div has overflow: hidden; I would expect the parent flexbox to just take up the default amount of space (i.e. the same as the other elements, but it doesn't.

It is like it ignores the overflow and just expands the div anyway.

I have made a CodePen so you can see the issue.

I would like all the coloured divs to be the same width.

Can anyone help?

like image 982
r3plica Avatar asked Dec 08 '15 11:12

r3plica


People also ask

Does overflow work with Flex?

The initial value of the flex-wrap property is nowrap . This means that if you have a set of flex items that are too wide for their container, they will overflow it.

How do I fix the overflow in CSS?

To change this, set the min-width or min-height property.” This means that a flex item with a long word won't shrink below its minimum content size. To fix this, we can either use an overflow value other than visible , or we can set min-width: 0 on the flex item.

Can't scroll to top of flex item that is overflowing container?

To fix this problem use flexbox auto margins, instead of justify-content . With auto margins, an overflowing flex item can be vertically and horizontally centered without losing access to any part of it.


1 Answers

Your problem is caused by setting the flex-basis of .flex > div to auto. This causes the div to expand to accommodate its content as it has no set dimension along the flex axis. Give it a set value like 20px and the space will be evenly divided because flex-grow is set to 1.

This article should help you get started with the flex layout.

Here is a modified version of your code

.flex {   display: -webkit-box;   display: flex;    height: 100px;   width: 100%; }  .flex > div {   flex-grow: 1;   flex-shrink: 1;   /* set value for the flex basis, the two properties above will evenly    divide the space. */   flex-basis: 20px;    -webkit-flex-grow: 1;   -webkit-flex-shrink: 1;    margin: 15px;   overflow: hidden; }  .example {   overflow: hidden;   border: 1px solid black; }  .example .wide {   width: 400px;   height: 10px; } 
like image 51
Huba Nagy Avatar answered Sep 19 '22 08:09

Huba Nagy