You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/02-app/01-building-your-application/05-styling/01-css-modules.mdx
+67-4
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
---
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.
4
5
---
5
6
6
7
{/* 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.
16
17
17
18
</PagesOnly>
18
19
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
+
19
28
Next.js has built-in support for CSS Modules using the `.module.css` extension.
20
29
21
30
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() {
91
100
92
101
</PagesOnly>
93
102
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**.
96
104
97
105
In production, all CSS Module files will be automatically concatenated into **many minified and code-split**`.css` files.
98
106
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) {
288
296
289
297
</PagesOnly>
290
298
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
+
importstylesfrom'./base-button.module.css'
309
+
310
+
exportfunction BaseButton() {
311
+
return <buttonclassName={styles.primary} />
312
+
}
313
+
```
314
+
315
+
```jsx filename="base-button.js" switcher
316
+
importstylesfrom'./base-button.module.css'
317
+
318
+
exportfunctionBaseButton() {
319
+
return<button className={styles.primary} />
320
+
}
321
+
```
322
+
323
+
```tsx filename="page.ts" switcher
324
+
import { BaseButton } from'./base-button'
325
+
importstylesfrom'./page.module.css'
326
+
327
+
exportfunction Page() {
328
+
return <BaseButtonclassName={styles.primary} />
329
+
}
330
+
```
331
+
332
+
```jsx filename="page.js" switcher
333
+
import { BaseButton } from'./base-button'
334
+
importstylesfrom'./page.module.css'
335
+
336
+
exportfunctionPage() {
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
+
291
354
## Additional Features
292
355
293
356
Next.js includes additional features to improve the authoring experience of adding styles:
0 commit comments