I want to make body have 100% of the browser height. Can I do that using CSS?
I tried setting height: 100%, but it doesn\'t work.
height: 100%
I want to set
Please check this:
* {margin: 0; padding: 0;} html, body { width: 100%; height: 100%;}
Or try new method Viewport height :
html, body { width: 100vw; height: 100vh;}
Viewport: If your using viewport means whatever size screen content will come full height fo the screen.