https://github.com/nemuvski/nacss
đ¶ CSS to prepare a base for styling
https://github.com/nemuvski/nacss
css normalize-css
Last synced: 7 months 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 3 years ago)
- Default Branch: main
- Last Pushed: 2025-08-25T13:02:17.000Z (7 months ago)
- Last Synced: 2025-08-25T15:15:58.227Z (7 months ago)
- Topics: css, normalize-css
- Language: CSS
- Homepage: https://nacss.netlify.app/
- Size: 821 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# đ¶ nacss
[](https://www.npmjs.com/package/nacss)


[](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);
@import url(https://unpkg.com/nacss);
```