HTML - how do you get rid of this extra spacing at the bottom or the page (body) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

HTML - how do you get rid of this extra spacing at the bottom or the page (body)

No matter what width I put It on body, the extra stuff )the at the the bottom is still there. I've been trying to figure out what the extra stuff was, now I know it's because of the "About" page. So, how do I get rid Iof the extra stuff at the Bottom? It' s doing nothing but making the VIsitor think there's more stuff but , its actually just a white (or black) screen.

31st Aug 2019, 5:06 AM
Ginfio
Ginfio - avatar
3 Answers
0
In this way with the mobile it is hard to read the code. I think you should better organize the code and try to use the HTML tags. You should also implement the indented. This will help you read the code better and be able to detect errors more easily.
31st Aug 2019, 1:49 PM
Eze
+ 3
Simply put, by default, block elements have a space. you can eliminate the padding and margin of all the elements with: * { padding: 0; margin: 0; } or.... selector{ padding: 0; margin: 0; } and then ... give each element the value you want or not. good luck!!!💪
31st Aug 2019, 5:29 AM
Eze
+ 1
I meant to put the code here: I was really tired when i thped this question https://code.sololearn.com/WCpYu510wGLf/?ref=app So when the code loads, scroll down and you'll see all that space, that doesnt have anything on, that's what i'm to get rid of
31st Aug 2019, 1:31 PM
Ginfio
Ginfio - avatar