我正在尝试学习响应式设计,并且这样做只是遇到了最大宽度概率与ie9,而它正如我在Chrome中预期的那样工作。当我调整浏览器窗口时,它只是不会调整我想要缩放的图像的最大宽度。让我给你看一下html代码和css。
HTML code:
<!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中缩小)。
感谢。如果还有一些不清楚的地方,请问,我会尽力回应。
答案 0 :(得分:3)
找到它。经过大量的修补,这是我现在的解决方案。这就是我在html和css代码中添加/编辑的内容。
已编辑的HTML代码:
<div class="pic">
<img class="imageObject" src="image001.jpg" alt="Just a picture 815px width and 500px height"></img>
</div>
添加了CSS代码:
img.imageObject {
margin:0 auto;
width:100%;
max-width:50.3975em;
}
至于为什么,我仍然在寻找解释原因。但是现在这将成为我的伎俩。
答案 1 :(得分:0)
这是一个可能的解决方法:
CSS:
.scale
{
max-width:980px;
}
.scale img
{
display:block;
max-width:80% //your value
}
HTML:
<div class="scale">
<img src="...."/>
</div>