How to get rid of extra white space from HTML CSS
Problem
- I had a problem that I have some extra space when I open my web site.
How to solve
- Set up default value for html and body tag.
html,body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow-x: hidden;
}
Leave a comment