Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/36.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Twitter bootstrap 某些Css在IE8浏览器中不起作用_Twitter Bootstrap_Css_Internet Explorer_Internet Explorer 8 - Fatal编程技术网

Twitter bootstrap 某些Css在IE8浏览器中不起作用

Twitter bootstrap 某些Css在IE8浏览器中不起作用,twitter-bootstrap,css,internet-explorer,internet-explorer-8,Twitter Bootstrap,Css,Internet Explorer,Internet Explorer 8,我已经创建了一个模板。我用过引导程序。在IE8浏览器中,我的模板不工作:前、后和背景图像 我在下面的标题部分使用了: <!DOCTYPE html> <!--[if IE 8]> <html class="ie8 " lang="en"><![endif]--> <!--[if IE 9]> <html class="ie9 " lang="en"><![endif]--&g

我已经创建了一个模板。我用过引导程序。在IE8浏览器中,我的模板不工作:前、后和背景图像

我在下面的标题部分使用了:

    <!DOCTYPE html>
    <!--[if IE 8]>        <html class="ie8 " lang="en"><![endif]-->
<!--[if IE 9]>        <html class="ie9 " lang="en"><![endif]-->
<!--[if gt IE 9]><!--><html class="" lang="en"><!--<![endif]-->
<head>
    <meta charset="utf-8">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" />
    <title>Duranto Html Portfolio Template</title>
    <meta name="description" content="">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="apple-touch-icon" href="apple-touch-icon.png">
    <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
    <link rel="stylesheet" href="css/bootstrap.min.css">
    <link rel="stylesheet" href="css/normalize.css">
    <link rel="stylesheet" href="style.css">
    <script src="js/vendor/modernizr-2.8.3.min.js"></script>
    <!--[if lt IE 9]>
  <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>

Duranto Html公文包模板

Bootstrap在许多方面与IE8不兼容,但主要有以下两个原因:

  • 诸如:before、:after、>等伪类在IE8中的支持较差

  • 不能保证多个类的顺序。引导使用了以下许多功能:

    <div class="col-md xs col12 etc etc etc">...
    
    。。。
    

  • IE8中的pseudos:before和:after存在问题,但这远远不是支持差<代码>>受支持(从IE7开始)。自IE7以来,支持组合多个类选择器。Bootstrap。感谢您编辑我的答案@FelipeAls。谢谢!