How can I create full screen HTML page?
I try this
height:100%
but dosn't works!
How can I create full screen HTML page?
I try this
height:100%
but dosn't works!
Just add code blow to your main style css file:
body {
min-height: 100%;
width: 100%;
position: absolute;
}