Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nemuvski/nacss
đ¶ CSS to prepare a base for styling
https://github.com/nemuvski/nacss
css normalize-css
Last synced: 4 days ago
JSON representation
đ¶ CSS to prepare a base for styling
- Host: GitHub
- URL: https://github.com/nemuvski/nacss
- Owner: nemuvski
- License: mit
- Created: 2022-09-05T13:03:11.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-31T02:23:02.000Z (4 months ago)
- Last Synced: 2024-12-06T14:43:43.259Z (27 days ago)
- Topics: css, normalize-css
- Language: CSS
- Homepage: https://nacss.netlify.app/
- Size: 797 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# đ¶ nacss
[![npm](https://img.shields.io/badge/nacss-555?style=flat-square&logo=npm)](https://www.npmjs.com/package/nacss)
![npm](https://img.shields.io/npm/v/nacss?style=flat-square)
![npm](https://img.shields.io/npm/l/nacss?style=flat-square)
[![npm](https://img.shields.io/badge/documents-555?style=flat-square&logo=netlify)](https://nacss.netlify.app/)**nacss** (*ăȘăă* in Japanese) is CSS to prepare a base for styling.
Inspired by [normalize.css](https://www.npmjs.com/package/normalize.css). It provides many great tips of CSS normalization till now.
## Preview
You can see the preview of **nacss** styles *[here](https://nacss.netlify.app/preview/)*.
## Support browsers
- Chrome (latest)
- Firefox (latest)
- Safari (latest)## Installation
```bash
npm install nacss
yarn add nacss
```There's no need to install package if loading CSS file via CDN.
## How to use
Just load CSS file in your project.
There are several ways to load CSS. The following shows how to load.
Then of course, the choice is yours. đ### HTML
Insert `` into ``.
```html
```
See *[here](https://github.com/nemuvski/nacss/releases)* for valid version.
### JavaScript
```js
import 'nacss';
```### Stylesheet
```css
@import 'nacss';
@import url(nacss);/* via CDN */
@import url(https://cdn.jsdelivr.net/npm/nacss/dist/nacss.min.css);
```