-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Allow markdown table to scroll #4401
Conversation
`overflow:auto` isn't effective when a table is wider than the container. Adding `display:block` fixes this issue.
Codecov Report
@@ Coverage Diff @@
## master #4401 +/- ##
==========================================
+ Coverage 37.72% 37.73% +0.01%
==========================================
Files 327 327
Lines 47866 47866
==========================================
+ Hits 18056 18061 +5
+ Misses 27212 27208 -4
+ Partials 2598 2597 -1
Continue to review full report at Codecov.
|
can you give screenshots with before and after? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please resolve conflict, but otherwise LGTM.
@pgodwin please resolve conflict |
@lafriks conflict resolved. |
Hopefully it does not have side effects :) |
overflow:auto
isn't effective when a table is wider than the container. Addingdisplay:block
fixes this issue.