-
Notifications
You must be signed in to change notification settings - Fork 84
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 scroll issue with full width layout #14
Comments
temporary fix with:
|
Can you make a demo on jsfiddle? |
there u go https://codepen.io/thomcheezy/project/editor/AQbbQR#0 but while investigate into that one, I found the problem myself. while removing padding on the container, the negative margin on the row and the padding on the cols, causes this horizontal scroll. so the question now is: how to properly flush all margin and paddings for the grid, if you want to have a full width layout/design, without any maring on the sides. is there any solution from your side or should I overwrite on my own? |
Seems to be a reoccurrence of kristoferjoseph#144. I've tested with |
adding max-width: calc(100% - 1rem) to parent element worked fine for me. Thanks 👍 |
Will a fix ever be implemented? Should be merged into the master |
Just add OVERFLOW-X: HIDDEN , make it simplier dont touch the container , rows , or cloumns Let me know if it FIX? :) |
still facing the horizontal scroll issue orignaly reported here: kristoferjoseph#144
using container-fluid around my row but removed the 16px padding to have a full width layout. without removing the padding of container-fluid, there is no horizontal scroll.
my code:
The text was updated successfully, but these errors were encountered: