Css ie11未接收最高媒体查询

Css ie11未接收最高媒体查询,css,media-queries,internet-explorer-11,Css,Media Queries,Internet Explorer 11,我有媒体查询,所以页面是有响应的。当分辨率为1600x1200时,ie11未拾取最高级别集。它未拾取最小宽度:1600px。但是,当分辨率为1920x1080时,它会选择正确的媒体查询css。当我使用开发人员工具模拟IE10时,媒体查询工作正常 @media screen and (max-width:1599px) and (min-width:1200px){ /** HEADER **/ .header_container{ top: 0px;

我有媒体查询,所以页面是有响应的。当分辨率为1600x1200时,ie11未拾取最高级别集。它未拾取
最小宽度:1600px
。但是,当分辨率为1920x1080时,它会选择正确的媒体查询css。当我使用开发人员工具模拟IE10时,媒体查询工作正常

@media screen and (max-width:1599px) and (min-width:1200px){
    /** HEADER **/
    .header_container{
            top: 0px;
            border: solid 0px red;
            height: 100px;
            background-color: #f4f4f4;
            border-bottom: solid 1px #e5e5e5;
    }
    .top_nav_container_dark{
        height: 30px;
    }

    .container{
            width: 1070px;
    }

    .page_heading{
        top: 10px;
    }
    .header_logo{
            position: absolute;
    top: 0px;
    }
    .header_logo visible-desktop img{
        width: 88px;
    }

    /** END OF HEADER **/


    #wrapper{
        width:1040px;
        margin: 0 auto;
    }
    #page-wrapper {
        border-left: 1px solid #54575A;

    }

    #network-graph{
        width: 550px;
        height: 450px;
    }

    .col-lg-3 {
        width: 32%;
    }

    .col-lg-8 {
        width: 100%;
    }

    #network-graph{
        width: 800px;
        height: 450px;
    }

    .col-lg-4 {
        width:100%;
    }


    #my-tab-content{

    }
}

@media screen and (min-width:1600px){
    /** HEADER **/
    .header_container{
            top: 0px;
            border: solid 0px red;
            height: 100px;
            background-color: #f4f4f4;
            border-bottom: solid 1px #e5e5e5;
    }
    .top_nav_container_dark{
        height: 30px;
    }

    .container{
        width: 1200px;
    }

    .page_heading{
        top: 10px;
    }
    .header_logo{
            position: absolute;
    top: 0px;
    }
    .header_logo visible-desktop img{
        width: 88px;
    }

    /** END OF HEADER **/

    #wrapper{
        width:1170px;
        margin: 0 auto;
    }

    #page-wrapper {
        border-left: 1px solid #54575A;

    }

    #network-graph{
        width: 1000px;
        height: 500px;
    }

    .col-lg-3 {
        width: 32%;
    }

    .col-lg-8 {
        width: 100%;
    }

    .col-lg-4 {
        width:100%;
    }


    #my-tab-content{

    }
}

@media(min-width:1920px){
    .container{
        width:1600px;
    }

    #wrapper{
        width:1570px;
        margin: 0 auto;
    }

    #page-wrapper {
        border-left: 1px solid #54575A;

    }

    #network-graph{
        width: 1350px;
        height: 500px;
    }

    .col-lg-3 {
        width: 32%;
    }

    .col-lg-8 {
        width: 100%;
    }

    .col-lg-4 {
        width:100%;
    }


    #my-tab-content{

    }
}

在lenova 1600x900上,ie 11上的默认分辨率不起作用。拾取
介质最小宽度:1200
。铬合金的工作性能很好

1600 x 900在1920 x 1080之后