解决方法
使用width:inherit;使其在IE8中使用纯CSS.
(见 responsive-base.css.)像这样:
(见 responsive-base.css.)像这样:
img { width: inherit; /* This makes the next two lines work in IE8. */ max-width: 100%; /* Add !important if needed. */ height: auto; /* Add !important if needed. */ }
我不知道这是否适用于IE7 – 请测试一下,如果您正在测试IE7,请告诉我们.在我弄清楚宽度之前:继承技术我正在使用下面的jQuery,所以你可以试试,如果你真的需要支持到IE7,第一种技术不起作用:
<!--[if lt IE 9]><script> jQuery(function($) { $('img').each(function(){ // .removeAttr supports SSVs in jQuery 1.7+ $(this).removeAttr('width height'); }); }); </script><![endif]-->