-1

Normally the div container height increases vertically downwards has the content in it increases. Is there a way to reverse that i.e. increase the height upwards by letting the content start at the bottom and warp upwards?

4

3 回答 3

1

您可以通过定位容器来实现这一点。

HTML

<div>asdfasdfadsf safsadfsd asdfsaasdfasd asdfasd asdf</div>

CSS

div{
     position:absolute;
     bottom:15px;
}

工作小提琴

于 2013-03-05T05:31:29.683 回答
0

默认情况下,div从顶部开始,其内容向下增加其高度,因此您必须将其位置设置为底部,然后它不会向下增加其大小

div {
    position:absolute;
    bottom:30px;


}

这是我为你做的小提琴

于 2013-03-05T05:33:11.867 回答
0

您需要为此使用 Javascript。这是一个使用 JQuery的示例。

根据您期望的行为,您可能需要更改它。请提供有关用户尝试滚动时您期望发生的情况的更多信息。此外,如何/何时/何处添加或删除内容?

于 2013-03-05T05:10:41.010 回答