答案 0 :(得分:2)
您可以尝试这样的事情:
.col {position: relative; padding-bottom: 60px;}
.btn-align-bottom {position: absolute; bottom: 30px;}
答案 1 :(得分:2)
我更改了这个样式类:
你可以删除背景,我只是为测试添加它!
.content {
margin-bottom:30px;
position: relative;
background: #bb0000;
height: 100%;
}
并添加了这个类:
.content div.btn-align-bottom{
position: absolute;
bottom: 50px;
left: 0px;
width: 100%;
}
DEMO: http://jsfiddle.net/VTV6B/
更新:我删除了您的Javascript并将其替换为更简单的内容,请查看css,这里是演示:http://jsfiddle.net/VTV6B/2/