我有媒体查询,因此页面响应迅速。当分辨率为1600x1200时,ie11没有拾取最高级别设置,它不会拾取min-width:1600px
。但是,当分辨率为1920x1080时,它会选择正确的媒体查询css。当我使用开发人员工具来模拟,即媒体查询工作时。
@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默认分辨率上,即11不起作用。选择media min-width:1200
。铬工作正常
答案 0 :(得分:0)
1600 x 900来自1920 x 1080