我有两件事。
- 我的最后一个列表项绝对位于无序列表的底部,但它与无序列表的底部重叠。
- 我想将绝对底部与“JQuery Equal Column Height”一起使用,所以我的两列彼此相等,因为我计划有斜角边框。
我正在找人为我解决这个问题,因为我现在被困住了。
这是我的 jsfiddle,最后一个列表项绝对底部:http: //jsfiddle.net/evanmoore/QPQ8Z/
这是与最后一个列表项绝对底部的 jquery 相等列高 http://jsfiddle.net/evanmoore/mCang/2/
var maxHeight = 0;
function setHeight(column) {
//Get all the element with class = col
column = $(column);
//Loop all the column
column.each(function() {
//Store the highest value
if($(this).height() > maxHeight) {
maxHeight = $(this).height()+2;
}
});
//Set the height
column.height(maxHeight);
}
$(document).ready(function() {
setHeight('.wrapper');
});