如何为溢出隐藏div提供填充底部?

时间:2012-07-20 05:26:38

标签: html css button overflow

内容来自数据库,bottom of div我有一个see more button,点击按钮,div将扩展到400px;

#content
  {

    width:180px;
    height:200px;
    overflow:hidden !important;
    padding-bottom:10px;
    position:relative;
}
  #bt
  {
    position: absolute;
    bottom: 0;
   }

HTML

<div id="content">
<p>content content ....</p>
<input type="button" value="see more" id="bt">
</div>

但是如何给这个div填充底部?是否还有其他css技巧可以为overflow :hidden div

填充底部

3 个答案:

答案 0 :(得分:1)

我为它创建了一个小提琴。检查此链接:http://jsfiddle.net/b2H6K/5/

喝彩!

答案 1 :(得分:0)

试试这个。这可能会对你有所帮助

#bt
{
    position: absolute;
    bottom: 20px; 
}

答案 2 :(得分:0)

请在#content。

中添加padding-bottom:50px