0
Why There is that whitespace when running the code
2 Respostas
+ 9
check this..
https://code.sololearn.com/W48cLPw96OAl/?ref=app
+ 3
Heba Mamdooh
because this is the default styling of lists.
You can change it for example like this:
ol {
padding-left:10px;
}
You can cancel the default styling of all elements:
* {
margin: 0;
padding: 0;
}