Могу ли я спросить, в чем проблема, почему мой div с дном: 0; прыгает на то, что выглядит как дно: -5; на устройствах Android. См. Изображение ниже:
Выпуск баннера:
.alert {
padding: 20px;
background-color:#0c4105;
color: white;
position: fixed;
bottom: 0;
left: 0;
width:100%;
}
@media only screen and (max-width: 800px) {
.alert {
width:100%;
bottom: 0.11111px;
}
}
.conbtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}
.conbtn:hover {
color: black;
}