我正在使用响应式网站。我已经使用媒体查询来对此负责。基本上,我没有使用任何固定宽度。我使用百分比作为每个 div 的宽度。
这样网站就可以根据浏览器的大小按比例缩放。对于较旧的ie,使用宽度百分比可能会导致问题。由于 ie 9 之前的 ie 不支持媒体查询,所以,我想为那些 ie 构建不可扩展的版本。因为我只提供了很少的代码来实现可伸缩性,所以如果我在我的主样式表中使用默认 CSS 下/在任何地方编写 CSS 代码可以吗?
喜欢在style.css
:
#info {
width: 13.672%;
/*if ie9 and lower
width: 175px;*/
height: 830px;
/*if ie9 and lower
margin-right: 40px;*/
margin-right: 3.125%;
float: left;
}
img {
margin: 0px;
padding: 0px;
border: 0px;
max-width: 100%;
/*if ie9 and lower
max-width: inherit*/
height: auto;
/*if ie9 and lower
height: inherit*/
}
我想写那种格式。但是,我不知道正确的格式。请告诉我正确的格式。
再问你一个问题。由于那些版本的 ie 不支持媒体查询,所以元标记
<meta name="viewport" content="width=device-width, maximum-scale=1.0, minimum-scale=1.0, initial-scale=1.0" />
<link href="KT2012.css" rel="stylesheet" type="text/css" />
<link href="kt_large.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" media="only screen and (min-width:50px) and (max-width:500px)" href="kt_small.css" />
<link rel="stylesheet" type="text/css" media="only screen and (min-width:501px) and (max-width:800px)" href="kt_tablet.css" />
<link rel="stylesheet" type="text/css" media="only screen and (min-width:801px) and (max-width:1024px)" href="kt_medium.css" />
,不要为那些旧版本制造任何问题,不是吗tablet.css
?mobile.css
我的意思是我只想在我的主样式表(KT2012.css
)中编写 IE 特殊 css。我应该在每个样式表(例如 at 等)上编写每个 IE 特殊 cssmobile.css
吗tablet.css
?如果该设计的基于 css 文件不支持较旧的 ie,那么,如果我为 ie 制作不可扩展的版本,我不会对基于设备/视口的样式表做任何事情,不是吗?