Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/asfak00/rem-px-value-converter-app
- Owner: Asfak00
- Created: 2023-07-15T08:27:25.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-22T02:57:12.000Z (over 1 year ago)
- Last Synced: 2023-07-22T07:12:49.055Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://rem-px-value-converter.netlify.app/
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;
```