这里是新手。
我正在尝试学习响应式设计,并且这样做刚刚遇到了 ie9 的 max-width prob,而它在 Chrome 中按预期工作。当我调整浏览器窗口时,它只是不会调整我试图缩放的图像的最大宽度。让我向您展示 html 代码和 css。
HTML 代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>This is a test</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<link rel="stylesheet" type="text/css" href="css/resetmin.css" />
<link rel="stylesheet" type="text/css" href="css/test3.css" />
</head>
<body>
<div style="background-color:black; height:35px;"></div>
<div id="container">
<div class="content">
<div class="header">
<h1>This is my header</h1>
</div>
<div class="pic">
<img src="image001.jpg" alt="Just a picture 815px width and 500px height"></img>
</div>
<div class="imageControl">
</div>
<div class="clear"></div>
</div>
<div class="content">
<div class="header">
<h1>This is my header</h1>
</div>
<div class="pic">
<img src="image002.jpg" alt="Just a picture 500px width and 815px height"></img>
</div>
<div class="imageControl">
</div>
<div class="clear"></div>
</div>
<div class="sideBar"></div>
<div class="padding"></div>
</div>
<div style="background-color: #555; width: 960px; height: 485px; margin: 0 auto; clear: both;"></div>
</body>
</html>
CSS 代码:test3.css
body {
color: #333;
font: 100%/1.5 Cambria, Georgia, serif;
background: #ece6d6 url(_assets/bg-light.png) repeat;
/* margin: 0 auto; */
}
img {
display: block;
max-width: 100%;
}
#container {
width: 960px;
margin: 0 auto;
background-color: #aaa;
}
.header {
height: 40px;
border-top: 1px solid #000;
}
.content {
background-color: grey;
float: left;
margin: 15px 15px 0px 15px;
}
.pic {
width: auto;
padding: 15px;
background-color: #777;
float: left;
/* position: relative;
top: 15px;
left: 15px; */
}
.imageControl {
width: 85px;
height: 350px;
background-color: #ccc;
float: right;
/* position: relative;
top: 15px;
left: 15px; */
}
.clear {
clear: both;
}
.padding {
padding-bottom: 15px;
clear: both;
}
.sideBar {
width: 300px;
height: 250px;
margin: 15px 15px 0px 0px;
float: right;
background-color: #333;
}
h1 {
font: bold 1.6em Cambria, Georgia, serif;
}
@media screen and (max-width: 980px) {
#container {
width: 95%;
}
.sidebar {
width: 30%;
}
.sidebar .widget {
padding: 8% 7%;
margin-bottom: 10px;
}
}
请查看并审查它。它仍在进行中,所以当你调整浏览器时请不要介意凌乱的响应式设计(我现在的问题是图像,因为它不会在 ie9 中缩小)。
谢谢。如果仍有不清楚的地方,请询问,我会尽力回复。