您好朋友请帮助我,我已经习惯了各种方式但响应式设计它不适用于IE。我用过一切。我也使用过css-mediaqueries.js。这不行,请帮帮我
这里我给你的样本html页面:
<!DOCTYPE html>
<!--[if IE 7 ]><html class="ie7" lang="en"><![endif]-->
<!--[if IE 8 ]><html class="ie8" lang="en"><![endif]-->
<!--[if IE 9 ]><html class="ie9" lang="en"><![endif]-->
<!--[if !IE]><!--> <html> <!--<![endif]-->
<head>
<!-- Meta -->
<meta charset="utf-8">
<meta name="keywords" content="" />
<meta name="description" content="">
<meta name="author" content="">
<title>Ads View Page</title>
<!-- Mobile Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--[if IE]>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<![endif]-->
<!-- css -->
<link rel="stylesheet" href="inc-media/bsm_style.css">
<link rel="stylesheet" href="inc-media/responsive.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<!--[if lt IE 9]>
<script src="inc-media/html5shiv.js"></script>
<script src="inc-media/respond.js"></script>
<![endif]-->
</head>
<body>
<header></header>
</body>
</html>
这是我的响应和主要的Css 响应css
@charset "utf-8";
/* CSS Document */
@media screen and (min-width: 768px) and (max-width: 979px) {
header{ background:#FF0000!important;
}
}
@media screen and (max-width: 767px) {
header{ background:#069!important;}
}
@media screen and (max-width: 480px) {
header{ background:#36F!important;}
}
主要Css
/* Reset Styling
----------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, img {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
* {
outline: none;
padding: 0px;
margin: 0px
}
body{
background:#999;}
header{ width:100%; background:#fff; height:150px; border-bottom:1px soild #333; margin:0px; padding:0px;}
**
请告诉我我的朋友我之间缺少什么。
答案 0 :(得分:1)
在!important
和实际值之间加上空格。
@media screen and (min-width: 768px) and (max-width: 979px) {
header{
background:#FF0000 !important;
}
}
@media screen and (max-width: 767px) {
header{
background:#069 !important;
}
}
@media screen and (max-width: 480px) {
header{
background:#36F !important;
}
}
此外,如果您正在以更好的方式编码 - 首先是移动设备&#34; - 更好的做法是为IE7和IE8浏览器提供移动视图,而不使用JS作为默认设置。 @ Jefferson-Ribeiro的链接推荐这种做法。它会起作用。
答案 1 :(得分:-1)
之前的答案应该可以解决问题,但更重要的问题是:为什么你希望它对IE7&amp; IE8吗
响应式网站的唯一目的是用于手机和手机。片剂。
并且第一个移动Windows设备以IE10开头,这意味着IE7-9不会在任何手机/平板电脑上使用。
换句话说,使网站在IE7&amp;简单地说就没有必要了。