CSS
- 1 ответ
- 0 вопросов
0
Вклад в тег
<div class = "fullpage">
<div id = "screen_1">
</div>
<div id = "screen_2">
</div>
</div>
.fullpage {
position: relative;
margin: 0px;
padding: 0px;
max-width: 100%;
min-height: 200%;
max-height: 200%;
overflow: hidden;
}
#screen_1, #screen_2 {
position: absolute;
left: 0px;
width: 100%;
height: 50%;
margin: 0px;
padding: 0px;
}
#screen_1 {
top: 0px;
}
#screen_2 {
top: 50%;
}
.fullpage {
height: 100vh; /*--- 100% от высоты видимой области страницы в браузере ---*/
width: 100vw; /*--- 100% от ширины ---*/
}