Skip to content

Instantly share code, notes, and snippets.

@vre2h
Last active April 7, 2026 13:17
Show Gist options
  • Select an option

  • Save vre2h/4bad1d3b836f6a18c9bd5a8ca68ab1d9 to your computer and use it in GitHub Desktop.

Select an option

Save vre2h/4bad1d3b836f6a18c9bd5a8ca68ab1d9 to your computer and use it in GitHub Desktop.
Simple guide to adding normalize.css to create-react-app
  1. Install normalize.css via npm
npm install --save normalize.css

1.1 Or yarn

yarn add normalize.css
  1. Import it to your root .js file before your css styles
import 'normalize.css';
@OtlichnikSasha

Copy link
Copy Markdown

use @import "normalize.css/normalize.css" instead @import-normalize;

@mrsvolodya

Copy link
Copy Markdown

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment