I am trying to make a div
element the full height of my $IonicModal
.
However, I cannot get it to work.
Here’s the code:
<ion-modal-view>
<ion-header-bar>
<h1 class="title">Map</h1>
</ion-header-bar>
<ion-content>
<div style="position:absolute; height: 100%; width: 100%; background-color: blue;"></div>
</ion-content>
</ion-modal-view>
What am I doing wrong?