CSS -Scrollhöhe, wenn der Bildschirm zu klein ist
.max_height_screen_then_scroll{
overflow-y: auto;
height:auto;
max-height:height: calc(100vh - 20px);
}
Friendly Hawk