简体   繁体   中英

Why does my website work in some Chrome, Opera, and Safari but not FireFox or IE?

So my website is just being started and currently it works in three of the five main browsers. It wont let me post pictures yet so I can't show anyone, but the website is here

In the ones it works in everything is exactly how I want it but in the ones it doesn't work in the background is completely white with no images or styles on anything and all the text is set to the left of the screen. If anyone could help that would be amazing! Thanks

you defined wrong type type="tect/css"

<link href="css/reset.css" rel="stylesheet" type="tect/css" /> /*wrong type define here*/

to

<link href="css/reset.css" rel="stylesheet" type="text/css" />

https://forums.digitalpoint.com/threads/css-background-image-not-showing-in-ie.115660/ Check that post for pointers as to how to properly set backgrounds. You want to double check your css and research the most common quirks in IE. Also, your question is very unhelpful since it doesn't even mention what versions of browsers you have already tried.

the think that says Kheema Pandey is correct but there is another think that you have to consider:

there are some codes in javascript that some browsers reconize and some other they dont.

so you have to find a compatible code.

i mean in some cases it happens

delete this line. You are basically limiting the rendering to only IE latest and chrome

<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">

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