ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

REM PX

Allows easy conversion of rem to px and px to rem.

Details

  • 2013.11.14.02.16.09
  • github.​com
  • github.​com
  • 12 years ago
  • 3 hours ago
  • 12 years ago

Installs

  • Total 9K
  • Win 6K
  • Mac 3K
  • Linux 448
Oct 29 Oct 28 Oct 27 Oct 26 Oct 25 Oct 24 Oct 23 Oct 22 Oct 21 Oct 20 Oct 19 Oct 18 Oct 17 Oct 16 Oct 15 Oct 14 Oct 13 Oct 12 Oct 11 Oct 10 Oct 9 Oct 8 Oct 7 Oct 6 Oct 5 Oct 4 Oct 3 Oct 2 Oct 1 Sep 30 Sep 29 Sep 28 Sep 27 Sep 26 Sep 25 Sep 24 Sep 23 Sep 22 Sep 21 Sep 20 Sep 19 Sep 18 Sep 17 Sep 16 Sep 15
Windows 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

REM-PX

A Sublime Text plugin that allows easy conversion of rem to px and px to rem.

Installation

You can easily install the pluing through Will Bond's excellent Package Control (https://sublime.wbond.net/). If you want to install this plugin manually for some reason, simply clone this repo into your packages directory (make sure not to put it in the user sub dir).

Instructions

Converting px to rem

  1. Select a px value (e.g. '16px')
  2. Hit ctrl+shift+r by default (cmd+shift+r on Mac OS) to convert the value to rem. (Can also be done by selecting 'Convert highlighted px to rem' under the tools menu)

Converting rem to px

  1. Select a rem value (e.g. '1rem')
  2. Hit ctrl+shift+x by default (cmd+shift+x on Mac OS) to convert the value to px. (Can also be done by selecting 'Convert highlighted rem to px' under the tools menu)

Supported Features

  • Convert px values to rem
  • Convert rem values to px
  • Checks to make sure the value is a valid px unit to convert to rem and visa versa

Notes

  1. The default size of 1rem is 16px which can be changed in the user settings.
  2. All values will remove trailing zero's (e.g. '1.500rem' would become '1.5rem').

Examples (1rem = 16px)

Example 1 (rem to px)

font-size: 1rem

Will convert to:

font-size: 16px

Example 2 (px to rem)

font-size: 16px

Will convert to: “css font-size: 1rem