Здравствуйте, мучаюсь уже несколько дней.
Пишу одностраничный сайт.
Хочу что бы картинка которая находиться в div (.airport) была прижата к самому низу, и при уменьшении размера экрана она не уезжала вверх а уменьшалась. Подскажите пожалуйста, мне всегда тут помогали.
<div class="section" data-anchor="F_1Page" id="F_1">
<!--section fullpage js -->
<div class="cloudsF">
<!--anim background css -->
<div class="airport">
<!--вот тут -->
<table class="table_air" border="1" width="100%">
<tr>
<!--самолеты -->
</tr>
<tr>
<!--самолеты -->
</tr>
</table>
</div>
</div>
</div>
.airport{
background: url(../../img/airport.png) no-repeat;
width: 100%;
height: 1000px;
display: block;
background-size: contain;
position: absolute;
bottom:0;
}
.cloudsF{
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
width:100%;
height:100%;
display:block;
background:transparent url(../../img/cloudsF.png) repeat;
z-index:3;
animation:move-clouds-backF 200s linear infinite;
transform: translatez(0);
}