We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
First of all, thank you for Flexibility, awesome work !
I have an issue with nowrap. Here's how it works in Chrome or others modern browsers.
My list of items :
But if the items are wider than the container itself, they stretch to the container width.
But on IE10 & IE9, it goes out of the container.
Here's my CSS
ul { -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; -js-display: flex; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; margin: 20px 0; } ul li { -webkit-box-flex: 0; -webkit-flex: 0 1 auto; -ms-flex: 0 1 auto; flex: 0 1 auto; list-style: none; margin: 0; padding: 0; text-align: center; }
And it's worse if I give a width: 100% to my ul
width: 100%
ul
Am I missing something ?
The text was updated successfully, but these errors were encountered:
yes i have this problem too ..
Sorry, something went wrong.
me too
Same here
No branches or pull requests
First of all, thank you for Flexibility, awesome work !
I have an issue with nowrap. Here's how it works in Chrome or others modern browsers.
My list of items :
But if the items are wider than the container itself, they stretch to the container width.
But on IE10 & IE9, it goes out of the container.
Here's my CSS
And it's worse if I give a
width: 100%
to myul
Am I missing something ?
The text was updated successfully, but these errors were encountered: