Skip to content

Flip CSS stylesheets between left-to-right and right-to-left. From Wikimedia.

License

Notifications You must be signed in to change notification settings

danielhusar/cssjanus

 
 

Repository files navigation

Build Status npm

CSSJanus

Converts CSS stylesheets between left-to-right and right-to-left.

Based the original CSSJanus Google project.

Install

npm install cssjanus

Basic usage

var cssjanus = require( 'cssjanus' );
var rtlCss = cssjanus.transform( ltrCss );

Advanced usage

transform( css, swapLtrRtlInUrl, swapLeftRightInUrl )
  • css (String) Stylesheet to transform
  • swapLtrRtlInUrl (Boolean) Swap 'ltr' and 'rtl' in URLs
  • swapLeftRightInUrl (Boolean) Swap 'left' and 'right' in URLs

Preventing flipping

Use a /* @noflip */ comment to protect a rule from being changed.

.rule1 {
  /* Will be converted to margin-right */
  margin-left: 1em;
}
/* @noflip */
.rule2 {
  /* Will be preserved as margin-left */
  margin-left: 1em;
}

See also

About

Flip CSS stylesheets between left-to-right and right-to-left. From Wikimedia.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 80.4%
  • HTML 19.3%
  • CSS 0.3%