gpt4 book ai didi

html - CSS 样式表不适用于 IE7 和 IE8

转载 作者:太空宇宙 更新时间:2023-11-03 23:41:19 26 4
gpt4 key购买 nike

我遇到了一个问题,该站点仍在我的本地主机中。 css 链接不包含在页面中的位置。它适用于除 IE7 和 IE8 之外的所有其他浏览器。

我正在使用 WordPress 3.6、Bootstrap 3、Modernizr 和 jQuery。

源代码

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]><html class="no-js lt-ie9 lt-ie8 ie-7"> <![endif]-->
<!--[if IE 8]><html class="no-js lt-ie9 ie-8"> <![endif]-->
<!--[if IE 9]><html class="no-js lt-ie9 ie-9"> <![endif]-->
<!--[if gt IE 8]><!--><html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title><?php echo title(); ?></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="<?php echo CSS_PATH; ?>/bootstrap.css"/>
<link rel="stylesheet" type="text/css" href="<?php echo CSS_PATH; ?>/bootstrap-theme.css"/>
<link href='http://fonts.googleapis.com/css?family=Maven+Pro:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="<?php echo CSS_PATH; ?>/common.css"/>
<?php if(is_front_page()){ ?><link rel="stylesheet" type="text/css" href="<?php echo CSS_PATH; ?>/home.css"/><?php } ?>
<link rel="stylesheet" type="text/css" href="<?php echo CSS_PATH; ?>/media.css"/>
<link rel="stylesheet" type="text/css" href="<?php echo CSS_PATH; ?>/print.css" media="print"/>
<script type="text/javascript" src="<?php echo JS_PATH; ?>/vendor/modernizr-2.6.2-respond-1.1.0.min.js"></script>
<script type="text/javascript">var template = '<?php echo get_template_directory_uri(); ?>';</script>
</head>

Chrome 头 enter image description here

IE8 头 enter image description here

我认为这可能与 DOCTYPE 有关,所以我更改为 HTML4,但仍然无法正常工作。另请注意,它作为 Quirks 在 IE8 浏览器模式和文档模式下工作,但在标准模式下不起作用

最佳答案

您正在使用条件注释。

<!--[if gt IE 8]><!--><html class="no-js"> 
<head>

您永远不会结束 <html> 的 session gt IE8 的开始标签。下一条评论之前的所有内容都隐藏在与之匹配的浏览器中。

添加<!--<![endif]--> .

关于html - CSS 样式表不适用于 IE7 和 IE8,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22780202/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com