Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/asfak00/rem-px-value-converter-app

This is a converter app. This app convert px value to em or ram value. And also change to rem value to px. I just made this using html css and js.
https://github.com/asfak00/rem-px-value-converter-app

Last synced: 17 days ago
JSON representation

This is a converter app. This app convert px value to em or ram value. And also change to rem value to px. I just made this using html css and js.

Awesome Lists containing this project

README

        

# Hello! Welcome to my " Rem / Px value converter " github repo

## here is the logic to make this function

# Px to Rem

```js
// up to 16 px (value / 16)* 1;

// under the 16 px value / 16;
```

# Rem To Px

```js
// up to 16 px value * 16;
```