 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to make the web page height to fit screen height with HTML?
Many ways are available to make the web page height to fit the screen height −
Give relative heights −
html, body {    height: 100%; } You can also give fixed positioning −
#main {    position:fixed;    top:0px;    bottom:0px;    left:0px;    right:0px; } You can also use Viewport height to fulfill your purpose −
height: 100vh;
Advertisements
 