2013-07-11 51 views
0

代码给出其对CSS编写但不是在IE浏览器在所有工作(6-8)媒体查询无法在Internet Explorer工作IE6,IE8

@media screen and (max-width: 340px) { 
.topmaindivleft{ 
width:100%; 
margin:0px; 
padding:0px; 
height:auto; 
float:left; 
} 
.topmaindivright{ 
width:100%; 
margin:0px; 
padding:0px; 
height:auto; 
float:left; 
} 
} 

想知道的一些代码,使其工作在Ie6-8作出响应网站

+0

可能的[媒体查询Internet Explorer]的副本(http://stackoverflow.com/questions/6309465/media-queries-internet-explorer) –

+0

如果这是第一次使用旧版浏览器,并且您计划这么做更多的未来,我建议做一些研究,哪些浏览器支持哪些功能以及它们之间的各种不一致。以http://caniuse.com/为例。 – Xareyo

回答

0

Internet Explorer 6-8不支持CSS3 Media Queries。但是,有一种方法可以通过使用this JavaScript Polyfill来模拟此类功能。 Polyfills是使用JavaScript模拟不存在的功能的脚本。

相关问题