Высота настройки: 100%; и переполнение: авто; для html и body решает проблему, но есть ли другой способ?
В силу определенных обстоятельств метатеги изменить нельзя.
Почему-то фрагмент не вызывает проблема.
Код: Выделить всё
An element with position: fixed; bottom: 0; set extends beyond the bottom of the browser
/* Adding the following will fix the issue */
/*
html,
body {
height: 100%;
overflow: auto;
}
*/
body {
margin: 0;
padding: 0;
}
.space {
height: 1000px;
}
.cont {
height: 200px;
/* Removing the negative margins solves the problem */
margin: 0 -1rem;
background: #ccc;
}
.fixed {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height: 3rem;
background-color: #84cc16;
color: #fff;
}
contents
fixed
Подробнее здесь: https://stackoverflow.com/questions/790 ... tom-of-the
Мобильная версия