-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
horizontal scrolling #144
Comments
Thanks, |
I have the same issue. Even using only a |
Yep, both container classes seem to have their calculations slightly off so there's a horizontal scroll for at least 30px at each responsive breakpoint. Checked this using a barebones page like the code above and the CDN link to v6.3.0. |
Any updates on this one? |
For what it's worth, I can also confirm having horizontal scrolling on mobile with the use of The Lookin' forward to any info on a fix, thanks! |
Also experiencing this issue. For whatever reason my widths are off by .container {
max-width: calc(100% - 1em);
} Another note, after doing that I experienced the problem again on two occasions.
|
Yeah, I have been experimenting with this a lot and have decided to use a different approach since a lot of people have run into issues. Will publish soon. |
Some update about this? Very simple things are affected now. :( |
I have the same issue. |
This is a very common issue that has been talked to a bunch in previous closed issues. I have been working on a fix that does not require the margin hack, but just so we are all clear the margin hack is needed for when you rely on This was refactored by a PR to match the bootstrap-grid api which requires container as well as some normalizing or reset styling to work like bootstrap does. I use a simple yet heavy handed reset which is probably why I have never had this issue. You could also include whatever reset boostrap is using in the meantime. |
for me adding: to .container fixed the problem. I saw bootstrap 4 is using it in their flexbox grid, why won't you? |
Fixed using a wrapper : |
Are there any updates on this? |
Is there any update on this? |
abandoned? |
@kristoferjoseph you mentioned a possible fix? using your reset.css approach i still have the issue |
@stephantabor your solution gets me the closest |
Fixed in forked flexboxgrid2. |
@evgenyrodionov mind opening a PR here? or linking to commit sha w fix |
@sazad2 this project looks abandoned, so I decided to fork it. Switch to flexboxgrid2. |
Fixes problem with horizontal scrolling on certain device width kristoferjoseph/flexboxgrid#144 (comment)
I have this problem when normalize.css has been added, it exists a solution? this solution worked for me when I added this line in body overflow-x: hidden; I do not know if it is the most recommended? |
On mobile if you don't need gutter simply a |
By reducing the width of the screen: 780px 1030 px 1220 px appears horizontal scrolling.
When using normalize.css to a width of 800px there is a constant horizontal scrolling.
code:
The text was updated successfully, but these errors were encountered: