Created
January 11, 2014 17:22
-
-
Save icegulch/8373820 to your computer and use it in GitHub Desktop.
This file contains 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
## CHANGE LANGUAGE DIRECTION ON CONTAINING UL | |
.product-listing { | |
list-style: none; | |
margin: 0; | |
padding: 0; | |
direction: rtl; | |
unicode-bidi: bidi-override; | |
font-size: 0; /* avoid word-spacing gap b/t LIs */ | |
} | |
## RESET DIRECTION ON CONTAINED ELEMENTS | |
.product-listing > li * { | |
direction: ltr; | |
unicode-bidi: bidi-override; | |
font-size: 15px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment