Skip to content

Expand scrollable elements

CSS
3 mo. ago

Make all elements fully visible by removing scroll, position and height limits for screenshots.

height
overflow
position
screenshot
scroll
expand-scrollable-elements.css
* {
overflow: visible !important;
height: auto !important;
max-height: none !important;
position: static !important;
}