Skip to content

Commit d94466c

Browse files
authoredApr 11, 2024··
Docs: Add recommendations for CSS import order (#64321)
1 parent 7aabb1d commit d94466c

File tree

1 file changed

+67
-4
lines changed

1 file changed

+67
-4
lines changed
 

‎docs/02-app/01-building-your-application/05-styling/01-css-modules.mdx

+67-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
2-
title: CSS Modules
3-
description: Style your Next.js Application with CSS Modules.
2+
title: CSS Modules and Global Styles
3+
nav_title: CSS Modules
4+
description: Style your Next.js Application with CSS Modules, Global Styles, and external stylesheets.
45
---
56

67
{/* The content of this doc is shared between the app and pages router. You can use the `<PagesOnly>Content</PagesOnly>` component to add content that is specific to the Pages Router. Any shared content should not be wrapped in a component. */}
@@ -16,6 +17,14 @@ description: Style your Next.js Application with CSS Modules.
1617

1718
</PagesOnly>
1819

20+
Next.js supports different types of stylesheets, including:
21+
22+
- [CSS Modules](#css-modules)
23+
- [Global Styles](#global-styles)
24+
- [External Stylesheets](#external-stylesheets)
25+
26+
## CSS Modules
27+
1928
Next.js has built-in support for CSS Modules using the `.module.css` extension.
2029

2130
CSS Modules locally scope CSS by automatically creating a unique class name. This allows you to use the same class name in different files without worrying about collisions. This behavior makes CSS Modules the ideal way to include component-level CSS.
@@ -91,8 +100,7 @@ export function Button() {
91100

92101
</PagesOnly>
93102

94-
CSS Modules are an _optional feature_ and are **only enabled for files with the `.module.css` extension**.
95-
Regular `<link>` stylesheets and global CSS files are still supported.
103+
CSS Modules are **only enabled for files with the `.module.css` and `.module.sass` extensions**.
96104

97105
In production, all CSS Module files will be automatically concatenated into **many minified and code-split** `.css` files.
98106
These `.css` files represent hot execution paths in your application, ensuring the minimal amount of CSS is loaded for your application to paint.
@@ -288,6 +296,61 @@ function ExampleDialog(props) {
288296

289297
</PagesOnly>
290298

299+
<AppOnly>
300+
301+
## Ordering and Merging
302+
303+
Next.js optimizes CSS during production builds by automatically chunking (merging) stylesheets. The CSS order is determined by the order in which you import the stylesheets into your application code.
304+
305+
For example, `base-button.module.css` will be ordered before `page.module.css` since `<BaseButton>` is imported first in `<Page>`:
306+
307+
```tsx filename="base-button.tsx" switcher
308+
import styles from './base-button.module.css'
309+
310+
export function BaseButton() {
311+
return <button className={styles.primary} />
312+
}
313+
```
314+
315+
```jsx filename="base-button.js" switcher
316+
import styles from './base-button.module.css'
317+
318+
export function BaseButton() {
319+
return <button className={styles.primary} />
320+
}
321+
```
322+
323+
```tsx filename="page.ts" switcher
324+
import { BaseButton } from './base-button'
325+
import styles from './page.module.css'
326+
327+
export function Page() {
328+
return <BaseButton className={styles.primary} />
329+
}
330+
```
331+
332+
```jsx filename="page.js" switcher
333+
import { BaseButton } from './base-button'
334+
import styles from './page.module.css'
335+
336+
export function Page() {
337+
return <BaseButton className={styles.primary} />
338+
}
339+
```
340+
341+
To maintain a predictable order, we recommend the following:
342+
343+
- Only import a CSS file in a single JS/TS file.
344+
- If using global class names, import the global styles in the same file in the order you want them to be applied.
345+
- Prefer CSS Modules over global styles.
346+
- Use a consistent naming convention for your CSS modules. For example, using `<name>.module.css` over `<name>.tsx`.
347+
- Extract shared styles into a separate shared component.
348+
- If using [Tailwind](/docs/app/building-your-application/styling/tailwind-css), import the stylesheet at the top of the file, preferably in the [Root Layout](/docs/app/building-your-application/routing/pages-and-layouts#root-layout-required).
349+
350+
> **Good to know:** CSS ordering behaves differently in development mode, always ensure to check preview deployments to verify the final CSS order in your production build.
351+
352+
</AppOnly>
353+
291354
## Additional Features
292355

293356
Next.js includes additional features to improve the authoring experience of adding styles:

0 commit comments

Comments
 (0)
Please sign in to comment.