Can anyone assist me in achieving an ion-grid with 24 columns? I was researching the Ionic page (https://ionicframework.com/docs/layout/grid) and came across the property "--ion-grid-columns" under the "Number of columns" section. Unfortunately, there was no example provided on how to implement it. The webpage mentions that customization is possible for the grid based on your desired number of columns.
Has anyone used this property in this manner before?
In HTML:
<ion-grid class="myGrid">
<ion-row>
<ion-col>Example</ion-col>
(repeated 24 times...)
</ion-row>
</ion-grid>
In CSS file:
.myGrid{
--ion-grid-columns: 24;
}
However, applying this method doesn't seem to affect my grid. How can I define 24 columns within the ion-grid structure? Thank you.