如何在离子2中制作响应表

时间:2017-10-06 12:55:30

标签: html css twitter-bootstrap ionic-framework ionic2

使用离子2和放大器填充动态数据。角度在这里我得到并显示数据但我得到表格在非响应格式和下面是我的代码

  <ion-grid>
<ion-row style="padding-top:5px;paddind:bottom:5px;background:#488aff">
  <ion-col>
   A
  </ion-col>
  <ion-col>
   B
  </ion-col>
</ion-row>
<ion-row *ngFor="let value of resultData" style="background:#eff0f1">
  <ion-col>
    {{value.A}}
  </ion-col>
  <ion-col>
    {{value.b}}
  </ion-col>
</ion-row>

Below is my table and it is not responsive

0 个答案:

没有答案