I started my studies with Ionic 2 these days, I am not able to align the text inside of the buttons to right or left, it always centralized.
1-I tried to use the tags (text-left, text-right), fail;
2-I tried to use css, without success:
text-align: right;
text-align: -moz-right;
text-align: -webkit-right;`
vertical-align: 30%;
3-I tried to change the HTML, without success:
<ion-content text-left>
<ion-col text-left>
<ion-row text-left>
<button ion-button text-left class="buttons" >Need Align</button>
</ion-row>
</ion-col>
</ion-content>
<ion-content text-left>
<div text-left>
<p text-left>
<button ion-button text-left class="buttons" >text to Align </button>
</p>
</div>
</ion-content>
<ion-content text-left>
<div text-left>
<p text-left>
<button ion-button text-left class="buttons" ><p text-left>PText here </p></button>
</p>
</div>
</ion-content>
Any tips?