在Ionic 2中左右对齐div内部的div

时间:2017-09-04 18:10:50

标签: angular ionic-framework ionic2 angular2-template

我的要求是:   我想创建一个按钮。该按钮上的显示文字应该有'行号','状态'和向上/向下箭头。我在ion-item标签内创建了这个按钮。 行号应出现在按钮的开头,而其他两行应出现在右侧。这是我的HTML。现在,我刚考虑了行号和状态。 HTML:

<button detail-none (click)="expandItem(row)" ion-button full>
    <div class="alignLeft">{{row["Activity #"]}}</div>
    <div>class="alignRight">{{row["Status"]}}</div>
</button>

在app.scss中

.alignLeft{
    float: left;
}

.alignRight{
    float: right;
}

请建议。提前谢谢!

1 个答案:

答案 0 :(得分:0)

使用按钮和离子项会导致一些问题。请尝试使用离子网格,它提供相同的功能。