在我的应用程序中,我有一个显示/隐藏单击按钮的面板。该面板的最大高度为300px。
添加/删除面板内的内容,面板应调整其高度以适应内容。由于我希望能够滚动此面板中的内容,因此我使用了ion-scroll
。
问题是,ion-scroll
似乎没有达到其内容的高度。我必须在'px'中专门设置一个高度来显示它的内容。谁知道我能做什么?
注意:给ion-scroll
百分比的高度也不起作用。
这是我的HTML
的结构<ion-content>
<div style="position: fixed; bottom: 0; width: 100%; z-index: 1; max-height: 300px;" *ngIf="showPanel">
<ion-scroll>Scroll content goes here.</ion-scroll>
</div>
</ion-content>
我正在使用Ionic 2 - Beta 10。