全高度的响应图像

时间:2013-07-05 19:09:21

标签: html css responsive-design

尝试用完整的div高度做一个响应式图像。 在某个时刻,宽度停止减少。

JsFiddle

我的代码:

<html>
<head>
<style>
html,body { height:100% }
* {
margin:0;
padding: 0;
}

.teste {
height: 80%
}

.teste img {

height: 100%;
}
</style>
</head>
<body>
<div class="teste">
<img src="" />
</div>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

Demo

 <div class="teste"> <img src="http://farm4.staticflickr.com/3782/9209525112_217d9db242_h.jpg" /></div>

的CSS

html,body { height:100% }
* {margin:0;
   padding: 0;}

.teste {
height: 80%
}

.teste img {
max-height: 100%;}