I am currently using Ionic 2 for my project.
Presented below is the template I have:
HTML Code
<ion-grid>
<ion-row>
<ion-col width-20>
<div>
<img src="http://www.kacholy.com/new_site/pic/image_7276.jpg">
</div>
</ion-col>
<ion-col class="secondaryPic" width-20>
<div class="placeHolder"></div>
</ion-col>
<ion-col class="secondaryPic" width-20>
<div class="placeHolder"></div>
</ion-col>
</ion-row>
</ion-grid>
CSS Styles
.placeHolder{
width: 100%;
height: 97%;
border: 2px solid deeppink
}
When viewed in Chrome, all looks good and works well:
However, when viewed in Safari or on an IOS device, there is an issue where the stretching of the div within ion-col is not extending to full height. Upon inspection, it seems that ion-col is taking the height of the image nearby.
Any suggestions for a solution?