加了max-width:100%能够使大图片缩小到窗口大小,那么如何设置能使小图片放大到窗口大小呢。还是必须得用js来做这个事?
怪我咯2017-04-10 14:54:05
1.图片方式
img{
width: 100%;
height: auto;
}
2.背景图+background-size
此处利用padding-top的百分比特性
.img{
padding-top: 图片高度/图片宽度 * 100%;
background-size: 100% 100%;
}
PHP中文网2017-04-10 14:54:05
直接用 width: 100%
不行嗎?
max-width: 100%;
min-width: 100%;
等於 width: 100%
高洛峰2017-04-10 14:54:05
html {
width: 100%;
height: 100%;
background: url(bg.jpg) no-repeat center center fixed;
background-size: cover;
}
参考资料:http://css-tricks.com/perfect-full-page-background-image/