我只是在Drupal 7中为IE (Internet )设置响应性设计。下面是我的代码its,它比IE10低一些,而不是IE10/11。
function bootstrap_preprocess_html(&$variables){
drupal_add_css(path_to_theme() . '/css/ie_10.css',
array('group' => CSS_THEME,
'browsers' => array('IE' => 'lte IE 10',
'!IE' => FALSE),
'preprocess' => FALSE)
);
}https://drupal.stackexchange.com/questions/130002
复制相似问题