Я знаю, что это не очень своевременный ответ, но есть способ решить эту проблему.Вы можете добавить элемент «spacer» в элемент, расположенный absolute
ly с отрицательным нижним полем и высотой, равной размеру отрицательного нижнего поля.1006 * CSS:
// same container code, but you should remove the margin-bottom as it has no effect
// spacer code, made it a class as you may need to use it often
.spacer {
height: 50px;
margin: 0 0 -50px 0;
/* margin: 20px 0 -50px 0; use this if you want #container to have a 'bottom padding', in this case of 20px */
background: transparent; /* you'll need this if #container's parent element has a different background from #container itself */
}