The following example is from the docs:
.code {
/*rtl:ignore*/
direction:ltr;
/*rtl:ignore*/
text-align:left;
}
The result when pasting this in the rtlcss playground:
.code {
direction:ltr;
/*rtl:ignore*/
text-align:right;
}
Adding a 3rd line preceded with /*rtl:ignore*/ works as expected. A 4th will have the same result as above, etc...