最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - bootstrap 3: Dynamically re-size a panel and keep panel footer on bottom - Stack Overflow

programmeradmin1浏览0评论

I'm resizing a panel to be the same height as the column to its left.

Here a bootply link

I resizes fine but the panels footer is stuck at the top. What is the best way to solve this?

Here's the js I'm using:

$(document).ready(function(){
    //Panels have a margin-bottom
    $topRightCol = $('.homepage-top-right-col .panel');
    $leftColHeight = $('.homepage-top-left-col').height() - 
        parseInt($topRightCol.css('margin-bottom')) -
        parseInt($topRightCol.css('borderBottomWidth'));
    $topRightCol.height($leftColHeight);

When I tried to set the height on the column class itself like this ('.homepage-top-right-col).height($leftColHeight) it didn't increase the height so I modified the panel instead.

I'm resizing a panel to be the same height as the column to its left.

Here a bootply link

I resizes fine but the panels footer is stuck at the top. What is the best way to solve this?

Here's the js I'm using:

$(document).ready(function(){
    //Panels have a margin-bottom
    $topRightCol = $('.homepage-top-right-col .panel');
    $leftColHeight = $('.homepage-top-left-col').height() - 
        parseInt($topRightCol.css('margin-bottom')) -
        parseInt($topRightCol.css('borderBottomWidth'));
    $topRightCol.height($leftColHeight);

When I tried to set the height on the column class itself like this ('.homepage-top-right-col).height($leftColHeight) it didn't increase the height so I modified the panel instead.

Share Improve this question asked Mar 29, 2014 at 19:50 red888red888 31.8k74 gold badges268 silver badges502 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 10

Well..you could solve this with a bit of extra CSS, and position:absolute, if you aren't against that. I added these CSS styles:

.homepage-top-right-col > .panel{
    position:relative;
}
.homepage-top-right-col .panel-footer{
    position:absolute;
    width:100%;
    bottom:0;
}

This causes the .panel-footer of the right panel to always stick to its bottom, regardless of the panel's height. Here's a JSFiddle to show you what this achieves.

Hope this helps! If you have any questions, let me know.

发布评论

评论列表(0)

  1. 暂无评论