html - iframe does not show in IE8 -
i have hotel reservation system inside iframe not show in ie8. i'm thinking doctype issue?
you can view http://bit.ly/15nhlav
this doctype website. iframe not have doctype declared.
<!doctype html> <!--[if ie 8]> <html class="no-js lt-ie9" <?php language_attributes(); ?>> <![endif]--> <!--[if gt ie 8]><!--> <html class="no-js" <?php language_attributes(); ?>> <!--< [endif]-->
i've found it'll show iframe
if inner width of browser (document.documentelement.clientwidth
) 1095px or larger. lower , gets pushed underneath (this happens other browsers tested with, too). however, in ie8 iframe
covered element (i couldn't find which), fixed adding following css style:
.iframe-home-res { z-index:10000; }
this forces iframe
render on top of other elements (unless have z-index
greater 10,000, have manually set).
you might want @ iframe
's code separately though, looks <select>
in wrong place.
Comments
Post a Comment