Skip to content

Instantly share code, notes, and snippets.

@MuhAssar
Created January 18, 2019 00:31
Show Gist options
  • Save MuhAssar/b85eddb53eaf8a213e855abdea3716f0 to your computer and use it in GitHub Desktop.
Save MuhAssar/b85eddb53eaf8a213e855abdea3716f0 to your computer and use it in GitHub Desktop.
demonstrate RTL bug in ionic 4 CSS utility float-end and float-start
<ion-content>
<ion-grid>
<ion-row>
<ion-col>
<div float-end style='width:50%'>
<h3>float-end</h3>
this should be on the left in RTL
</div>
<div float-start style='width:50%'>
<h3>float-start</h3>
this should be on the right in RTL
</div>
</ion-col>
</ion-row>
</ion-grid>
</ion-content>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment