Created
January 18, 2019 00:31
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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