Open andrewrk opened 3 months ago
Extracted from #20958.
All the UI elements on the page should use position: absolute and then set the bottom and right properties. The main window should not scroll, so that all the UI widgets are visible at the same time.
position: absolute
bottom
right
Related:
I would suggest the opposite: Let the main window scroll, but position UI elements with position: fixed; to make them stay on screen.
position: fixed;
I find that aligns better with web dev and accessibility.
Extracted from #20958.
All the UI elements on the page should use
position: absolute
and then set thebottom
andright
properties. The main window should not scroll, so that all the UI widgets are visible at the same time.Related:
20983