我想调整ionic-popover的高度以适应他的内容。我使用这个弹出框来显示一些信息:它们只包含 aion-header
和 a ion-content
。
<ion-popover-view>
<ion-header-bar>
<h1 class="title">Title</h1>
</ion-header-bar>
<ion-content scroll="false" class="padding">
I want the parent's height to fit the content's height
</ion-content>
</ion-popover-view>
但是对于我想显示的几个文本来说,弹出框太大了:
我尝试使用 设置 ion-popover-view 高度height: auto;
,但在这种情况下只显示标题栏。设置固定高度 ( height: 100px;
) 正在工作(如此处所述),但我想要一个取决于内容长度的动态高度。