Skip to content

ppowalowski/rework-rem2px

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rework-rem2px

Rework plugin that converts rem units to pixel ones for creating CSS matching IE8 specifically.

NPM version Build status Dependency Status devDependency Status

Example

.home {
  font-size: 1.2rem;
}

Yields:

.home {
  font-size: 19.2px;
}

Usage

  var rework = require('rework');
  var rem2px = require('rework-rem2px');

  // Says rework to use rem2px with 16px for 1rem
  rework(css).use(rem2px(16));

rework-rem2px vs rework-rem-fallback

If you plan to create a totally different CSS stylesheet for IE<=8 that you will integrate with conditionnal comment, use this module.

If you just want to keep the same stylesheet for every browsers, use rework-rem-fallback.

The MIT License (MIT)

Copyright (c) 2013 Nicolas Froidure

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A rework plugin to replace rem units per px units according to the given rem size.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published