答案 0 :(得分:0)
请尝试以下代码。
<img src="http://i.imgur.com/KjuqA1l.png" style="position:fixed;bottom:0px;">
更新
<img src="http://i.imgur.com/KjuqA1l.png" style="position:fixed;bottom:0px;max-width:100%;">
答案 1 :(得分:0)
img {
position: absolute;
bottom: 0;
}
小提琴:http://jsfiddle.net/dwtp7pje/
请注意,如果您将图像放在另一个div中,则需要为该div指定一个position: relative;
才能生效。
修改:如果您想在底部放置多个图片,请将图片放在这样的div中:
<div>
<img src="http://orig12.deviantart.net/2b79/f/2008/314/e/8/my___dark_knight___dvd_cover_by_esbe77.jpg" alt="">
<img src="http://orig12.deviantart.net/2b79/f/2008/314/e/8/my___dark_knight___dvd_cover_by_esbe77.jpg" alt="">
<img src="http://orig12.deviantart.net/2b79/f/2008/314/e/8/my___dark_knight___dvd_cover_by_esbe77.jpg" alt="">
</div>
用css:
div {
position: absolute;
bottom: 0;
}
img {
max-width: 33%;
}
答案 2 :(得分:0)
这是在css
.fix{
position:fixed;
bottom:0px;
}
和你的HTML
<img src="yourimagepath" class="fix"/>
绝对:基于其最近的相对定位的父元素绝对定位。
修正:固定元素在网页上完全独立。无论父母如何,固定位置元素将始终基于浏览器窗口
固定