+ 11
When I run a code on the bottom is showing console that cover 20% of the page.
my codes are not full page any more https://code.sololearn.com/Wiv9Z9z3L6Az/?ref=app https://code.sololearn.com/WJly9ZuywWBU/?ref=app
4 Réponses
+ 9
@Didi Bug that came with the latest update. Hope, it gets solved in the next.
https://www.sololearn.com/discuss/291731/?ref=app
+ 9
For now, use <br><br><br> at the end of the code just like I did my Hello World code.
https://code.sololearn.com/W9xE6SoiJjyl/?ref=app
+ 7
@Krishna Teja Yeluripati:
More clean practice to set some padding-bottom to the <body> element:
body { padding-bottom:10vh; }
You should adapt the value to your needs, here set 10% of the viewport height: on my device, about 18vh correspond to the max-height of console plus defaut margin-bottom applied to <body> element...
+ 7
At the end of your code put:
<br/><br/><br/><p>This is here because of console covering content.</p>
Won't get rid of console but it'll cover something you don't care about.