简体   繁体   中英

Why is Live Server only loading half my HTML code?

I have searched the internet for hours trying to find someone else who shared my issue, but it seems to be entirely unique to me.

So basically, I launch my very small HTML file with live server, but only 2 divs are loaded on the webpage, and I have no idea why. I have tested it and narrowed it down to purely being an issue caused by live server, as my html file loads completely fine when the file itself is double-clicked on from file explorer, and I still have the issue when i remove my links to my css and js files from the hmtl file.

this happens on the simplest of code, and its so annoying.

here is some simple code:

在此处输入图片说明

and here is the screenshot of the elements not loading:

在此处输入图片说明

and i also show the "code injected by live server" bit, cause i think that might be the issue?

please help, this is driving me crazy. ps. i am a newbie to live server and website making.

There can only be one body tag in whole HTML file. You can try this instead :

 <html> <head> <title>HTML page</title> </head> <body> <div> <p>text</p> </div> <div> <p>text</p> </div> <div> <p>text</p> </div> <div> <p>text</p> </div> </body> </html>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM