Да, если вы установите max-height
- какой будет минимальная высота?ZERO!
Вам также нужно установить min-height
или height
.
Также здесь есть несколько проблем.
div.dogodkiinhalt {
position: relative;
top: 0px; <-- not needed
left: 0px; <--- not needed
width: 400px;
padding-bottom: 0px;
background: blue;
border: none;
overflow: auto;
visibility: visible; <--- not needed
height: 200px;
}
//inner div style
#inhaltbox {
position: absolute;
top: 0px; <--- left or right also needs to be declared
overflow: hidden;
width: 400px;
height: 200px;
display: none; <---
display: block; <--- Choose one, not both
}