Skip to content

Instantly share code, notes, and snippets.

@Joblyn
Forked from vre2h/normalize.md
Created November 12, 2020 22:17
Show Gist options
  • Save Joblyn/803a2b1f94fc989169d603a0a7274ccb to your computer and use it in GitHub Desktop.
Save Joblyn/803a2b1f94fc989169d603a0a7274ccb 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';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment