0

内容来自数据库动态,在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

4

2 回答 2

0

尝试这个。这可能会帮助你

#bt
{
    position: absolute;
    bottom: 20px; 
}
于 2012-07-20T05:41:06.630 回答
0

padding-bottom:50px请在#content 中添加一个。

于 2012-07-20T05:49:42.820 回答