Skip to content

Instantly share code, notes, and snippets.

@yosefw
Created January 12, 2015 18:03
Show Gist options
  • Save yosefw/d56a809268db461089e1 to your computer and use it in GitHub Desktop.
Save yosefw/d56a809268db461089e1 to your computer and use it in GitHub Desktop.
For switching an element to LTR in an RTL parent
.lrm-rlm() {
&:before {
content: "\200E"; /* left-right mark */
}
&:after {
content: "\200F"; /* right-left mark */
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment