Answer the question
In order to leave comments, you need to log in
How to make the title screen of a landing page full width and height?
How to make the title screen of the landing page in full width and height for any size of the browser window. Example: takprosto.biz/im-za-vikh-i2-50
Answer the question
In order to leave comments, you need to log in
html, body {
height:100%;
width:100%;
padding:0px;
margin:0px;
margin:0px;
}
and now for your block set
.block {
width:100%;
height:100%;
}
It is enough to set for the block:
block {
width:100vw;
height:100vh;
}
You can write id for example
#first{
width: 100%; /*this width will stretch to 100%*/
height:100%; /*this is the height at 100%*/
}
And then you will have a div in which your very first screen will be and you will write there
div id="first"
here is the first block
/div
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question