css - Ionic: how to center text in a card body and align -
in ionic have created card header text in center:
<div class="card"> <div class="item item-divider center-text"> title </div> <div class="item item-text-wrap"> <div class="row"> <div class="col col-50">.col.col-50</div> <div class="col">10 %</div> <div class="col">.col</div> </div> </div> </div>
where:
.center-text { text-align: center; }
the problem text "10 %" not aligned header title.
how can center , align header , 10% string?
one way give each of 3 divs in row following properties:
.item-text-wrap .col{ width: 33.33%; text-align: center; }
Comments
Post a Comment