Home > Blockchain >  Visual Studio Code Live server injects a white div to the bottom of the HTML page
Visual Studio Code Live server injects a white div to the bottom of the HTML page

Time:03-10

https://i.stack.imgur.com/ciyJv.png - White DIV on the website.

https://i.stack.imgur.com/wHwJX.png - White DIV code.

https://i.stack.imgur.com/ZraZI.png - No such code in HTML.

The white DIV is injected by live server AND it goes over to the website hosted by DNS.

https://www.kristotanak.ee

How do I get rid of it? I am a 16 year old student studying software development soo please don't bully me.

CodePudding user response:

Your code seems to have ended there. The white you claim is being displayed is by default the background-color of your browser.

CodePudding user response:

You can add in your css file :

body {
    min-height: 100vh;
}
  • Related