You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The src code is wider than the frame it sits in but the horizontal scroll bar is way way (1500 lines) down at the bottom of the page. Arrow keys work for scrolling but it may not be obvious though. It's also not obvious that you can scroll horizontally without checking all the way to the bottom.
It'd be nice to allow horizontal scrolling somehow without going to the bottom of the page or using the arrow keys.
The text was updated successfully, but these errors were encountered:
Fixes this. This might have consequences elsewhere, though. Regardless, this is the spirit of the solution: Code shouldn't scroll its container, it should overflow it, so that the page itself scrolls.
I don't know how to fix it either. Having the width increase with the windows size might also work. Or a horizontal scrollbar which floats at the visible bottom of the page (don't know if it's possible).
* Make the code fill up the full width of the page (no massive whitespace on the left)
* Move the code down to make it not intersect the logo
* Set a min-width and remove the max-width so that the code doesn't scroll internally, but instead scrolls the page, meaning horizontal scroll bars are always available
* Set overflow to actually overflow, just to be sure
Fixesrust-lang#15891
Go to std::iter docs and click src at the top right.
The src code is wider than the frame it sits in but the horizontal scroll bar is way way (1500 lines) down at the bottom of the page. Arrow keys work for scrolling but it may not be obvious though. It's also not obvious that you can scroll horizontally without checking all the way to the bottom.
It'd be nice to allow horizontal scrolling somehow without going to the bottom of the page or using the arrow keys.
The text was updated successfully, but these errors were encountered: