HTML CSS
As shown in the picture, there is a gap that cannot be removed. .You set the body margin: 0; padding: 0;
Many tags have default settings in different browsers The margin and padding values, you can clear the default values before use, and return them to 0, so this problem will not occur
Solution 1:
body,html,div{ padding:0; margin:0 ;}
Solution 2:
Directly *{padding:0; margin:0} or
Because there are too many tags and many are not used, so the first method is recommended, just write commonly used tags.