Currently, I am developing an app using Ionic
. My goal is to position four row
elements and a button
inside a div
. The div
occupies the entire screen with a height of `100%`, and the content within it should expand to match this full-height requirement.
Despite attempting the solution below, the issue remains unresolved:
ion-content {
position: relative;
height: auto;
width: 100%;
}
.boxes-container {
position: absolute;
height: 100%;
width: 100%;
}
If you need further context, feel free to check out the complete code here. Any suggestions on how to address this challenge would be greatly appreciated!
Thank you in advance for your assistance!