简体   繁体   中英

Design working in all browsers except IE

I have the following page:

http://www.bergstenmusic.com/test2 ---> Moved to here: http://www.bergstenmusic.com

I haven't been able to figure out why the plugin (Mosaic) will not present itself in IE. It works in every other browser I've tried and on mobile devices.

I was hoping someone could shed some light on it.

EDIT: I went through all my errors on W3C and fixed them one by one in CSS and then XHTML. One of them worked, I'm not sure which.

Take a look in your markup. IE is reporting that some comments are not being closed properly. Examples below but there are many more. Try removing the ! in the closing tag

<!-- mosaic start--!>
<!-- AMPS--!>
<!--GUITARS--!>
...ETC

Chrome / FF seems to handle these and fixes them but IE isnt so it hiding the content as it hasnt seen the first comment closed.

The following examples are all legal comments:

 <!-- Hello -->
 <!-- Hello -- -- Hello-->
 <!---->
 <!------ Hello -->
 <!>

Source: http://htmlhelp.com/reference/wilbur/misc/comment.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