中心离子中的对齐元素



i hava a代码,这是一个循环,输出了一个数字。

<div *ngFor="let x of y.x" >

现在输出在这里:

<h5 class="centeredX " *ngIf="x.link == ''">{{x.x}}<span *ngIf="x.isZ == 1"> <sup>3D</sup></span></h5>

那么如何对齐所有元素?我的输出总是这样的东西:

1
2
3
4

我想要这个,也在页面中间的中心:

1 2 3 4

我使用了离子2和角2。

添加样式将对齐项目。您可以使用类样式或使用以下方式使用内联样式。

 <div *ngFor="let x of y.x" style:"display:inline-flex">
    ...
    </div>

相关内容

  • 没有找到相关文章

最新更新