我想用jQuery调整图像HTML。
这很简单elt.css({height: '42px'})
,但我的问题是图像的放大率位于底部,即图像顶部不移动,它是伸展或快捷方式的底部
像这里:http://jsfiddle.net/763wumr0/
使用绝对编辑:http://jsfiddle.net/763wumr0/12/
我想以另一种方式去做!图像的底部是固定的,并且图像的顶部是增加或减少的。
我该怎么做?
THX。
答案 0 :(得分:6)
绝对定位?
http://jsfiddle.net/OxyDesign/pss3ysru/
CSS
.img-container{
width: 50px;
height: 50px;
position:relative;
}
.img-bottom
{
width: 50px;
height: 50px;
position:absolute;
bottom:0;
left:0;
}