---
title: Styling
description: Learn the different ways you can style your Next.js application.
url: "https://nextjs.org/docs/14/app/building-your-application/styling"
version: 14.2.35
lastUpdated: 2023-07-31
prerequisites:
  - "Building Your Application: /docs/14/app/building-your-application"
---


Next.js supports different ways of styling your application, including:

* **Global CSS**: Simple to use and familiar for those experienced with traditional CSS, but can lead to larger CSS bundles and difficulty managing styles as the application grows.
* **CSS Modules**: Create locally scoped CSS classes to avoid naming conflicts and improve maintainability.
* **Tailwind CSS**: A utility-first CSS framework that allows for rapid custom designs by composing utility classes.
* **Sass**: A popular CSS preprocessor that extends CSS with features like variables, nested rules, and mixins.
* **CSS-in-JS**: Embed CSS directly in your JavaScript components, enabling dynamic and scoped styling.

Learn more about each approach by exploring their respective documentation:

- [CSS Modules](/docs/14/app/building-your-application/styling/css-modules)
  - Style your Next.js Application with CSS Modules.
- [Tailwind CSS](/docs/14/app/building-your-application/styling/tailwind-css)
  - Style your Next.js Application using Tailwind CSS.
- [CSS-in-JS](/docs/14/app/building-your-application/styling/css-in-js)
  - Use CSS-in-JS libraries with Next.js
- [Sass](/docs/14/app/building-your-application/styling/sass)
  - Style your Next.js application using Sass.

---

For an index of all available documentation, see [/docs/14/llms.txt](/docs/14/llms.txt)