I’m using last Ionic 4 & angular 8
I’ve a very simple grid and i’d like to have borders like an excel for grid, rows 6 cols like this:
This is my code:
<ion-content padding class="tab5-content">
<ion-grid>
<ion-row *ngFor="let item of data; index as i">
<ion-col col-auto> {{ item.field1 }}</ion-col>
<ion-col text-right> {{ item.field2 }}</ion-col>
</ion-row>
</ion-grid>
</ion-content>
I’ve trid with css but i’ve no found a solution
On Ionic Docs i’ve no found this very basic info