-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The value of flex can mean different things #26
Comments
What do you mean? We don't have to change anything when the css is using one of this values, right? |
Check out the updated Flexbug 6. |
You shouldn't change |
Hmm, but for the same reason expanding * {
flex: 0 1 0%;
} and then change |
Does flex-shrink: 5;
flex: 30px; I'm pretty sure that now |
Nice catch, you could perhaps raise an issue in DevTools. |
I didn't know this before, but apparently you can set
flex
to30px
and it will only setflex-basis
, you can also set it to1 30px
, which setsflex-grow
andflex-basis
while skippingflex-shrink
.It looks like we have more work to do 😔
The text was updated successfully, but these errors were encountered: