Developer Template GFM Verified5 Columns · 6 Sample Rows

Tailwind CSS & Responsive Viewport Breakpoints Markdown Table Template

Reference table for Tailwind CSS responsive screen utility prefixes, CSS min-width media queries, target device categories, and layout widths.

Primary Use Case: Frontend design systems, UI component library guidelines, responsive web specs.

Interactive Template Customizer

Edit cells, add rows, or sort — changes update the markdown live
Quick Start:
#
1
0px
100%
2
sm:
640px
@media (min-width: 640px)
640px
3
md:
768px
@media (min-width: 768px)
768px
4
lg:
1024px
@media (min-width: 1024px)
1024px
5
xl:
1280px
@media (min-width: 1280px)
1280px
6
2xl:
1536px
@media (min-width: 1536px)
1536px
Flavor:
Style:
| Breakpoint Prefix | Min Width (px) | CSS Media Query              | Max Container Width | Target Device Class                         |
| :---------------- | -------------: | :--------------------------- | ------------------: | :------------------------------------------ |
| (Default)         |          `0px` | No query (Mobile first)      |              `100%` | Handheld mobile smartphones (portrait)      |
| `sm:`             |        `640px` | `@media (min-width: 640px)`  |             `640px` | Large phones, mobile landscape              |
| `md:`             |        `768px` | `@media (min-width: 768px)`  |             `768px` | Tablets (iPad, Galaxy Tab portrait)         |
| `lg:`             |       `1024px` | `@media (min-width: 1024px)` |            `1024px` | Laptops, horizontal tablets, small desktops |
| `xl:`             |       `1280px` | `@media (min-width: 1280px)` |            `1280px` | Standard desktop displays (FHD 1080p)       |
| `2xl:`            |       `1536px` | `@media (min-width: 1536px)` |            `1536px` | Large desktop monitors, ultrawide displays  |
Convert document (PDF, Word, PPTX) → MDConverter
Rendered Preview
GitHub Flavored Markdown style
Breakpoint PrefixMin Width (px)CSS Media QueryMax Container WidthTarget Device Class
(Default)0pxNo query (Mobile first)100%Handheld mobile smartphones (portrait)
sm:640px@media (min-width: 640px)640pxLarge phones, mobile landscape
md:768px@media (min-width: 768px)768pxTablets (iPad, Galaxy Tab portrait)
lg:1024px@media (min-width: 1024px)1024pxLaptops, horizontal tablets, small desktops
xl:1280px@media (min-width: 1280px)1280pxStandard desktop displays (FHD 1080p)
2xl:1536px@media (min-width: 1536px)1536pxLarge desktop monitors, ultrawide displays

Column Architecture & Alignment Specification

Carefully chosen column alignments ensure optimal visual scannability across desktop and mobile screens:

Column HeaderAlignmentDelimiter SyntaxDesign Rationale
Breakpoint Prefixleft:---Standard left-aligned readable text & descriptions
Min Width (px)right---:Aligns numeric scale, defaults, or magnitudes
CSS Media Queryleft:---Standard left-aligned readable text & descriptions
Max Container Widthright---:Aligns numeric scale, defaults, or magnitudes
Target Device Classleft:---Standard left-aligned readable text & descriptions

Pro Tips for Tailwind CSS & Responsive Viewport Breakpoints

  • Format Tailwind prefixes in inline code (`sm:`, `md:`, `lg:`).
  • Right-align pixel min-widths and rem equivalents.
  • Explain that Tailwind is mobile-first (unprefixed utilities apply to 0px and above).

How to Deploy This Table Across Platforms

GitHub README & PRs

Paste raw Markdown into README.md. Leave one blank newline above and below for GFM compliance.

Obsidian PKM Vaults

Paste directly into Live Preview mode. Use wikilinks ([[Note]]) inside cells for bidirectional linking.

Notion Workspaces

Press Enter to make a fresh empty line block, then paste. Notion auto-transforms it into a native Simple Table block.

Docusaurus & VitePress

Standard GFM tables work out of the box in modern MDX engines. You can style them via custom CSS selectors.

Raw GFM Code

| Breakpoint Prefix | Min Width (px) | CSS Media Query              | Max Container Width | Target Device Class                         |
| :---------------- | -------------: | :--------------------------- | ------------------: | :------------------------------------------ |
| (Default)         |          `0px` | No query (Mobile first)      |              `100%` | Handheld mobile smartphones (portrait)      |
| `sm:`             |        `640px` | `@media (min-width: 640px)`  |             `640px` | Large phones, mobile landscape              |
| `md:`             |        `768px` | `@media (min-width: 768px)`  |             `768px` | Tablets (iPad, Galaxy Tab portrait)         |
| `lg:`             |       `1024px` | `@media (min-width: 1024px)` |            `1024px` | Laptops, horizontal tablets, small desktops |
| `xl:`             |       `1280px` | `@media (min-width: 1280px)` |            `1280px` | Standard desktop displays (FHD 1080p)       |
| `2xl:`            |       `1536px` | `@media (min-width: 1536px)` |            `1536px` | Large desktop monitors, ultrawide displays  |

Standard padded style with boundary pipes matching GitHub GFM parser specifications.

Platform Support

GitHub (GFM)✓ 100% Native
GitLab (GLFM)✓ 100% Native
Obsidian Vault✓ 100% Native
Notion Workspace✓ Paste as Table
Slack & DiscordIn Code Block

Syntax Formatting Rules

  • Pipe Escaping: Use \| for text with pipe symbols.
  • Multi-line Cells: Use <br> for line breaks.
  • Monospace Text: Wrap variables or code in backticks (`key`).
  • Empty Values: Use instead of leaving cells empty.
Template Knowledge Base

Frequently Asked Questions About Tailwind CSS & Responsive Viewport Breakpoints

How should I format parameters, flags, or keys in this Tailwind CSS & Responsive Viewport Breakpoints table?

Wrap variable names in the "Breakpoint Prefix" column in backticks (e.g., `(Default)`). This enforces monospace rendering, prevents underscores from italicizing surrounding text, and improves readability across GitHub and developer documentation sites.

Where in my repository or project documentation should I place this Tailwind CSS & Responsive Viewport Breakpoints table?

This template is specifically designed for frontend design systems, ui component library guidelines, responsive web specs. Place it inside your project's README.md, technical wiki, or developer portal. Always leave at least one blank newline before and after the table to ensure the GFM parser detects it properly.

Why is the "Breakpoint Prefix" column styled with left alignment?

The "Breakpoint Prefix" column functions as the primary key of this table. Setting it to left alignment establishes an anchor along the left reading margin, making it effortless for developers to scan down the list.

How do I add line breaks inside a single cell of this Tailwind CSS & Responsive Viewport Breakpoints table?

Standard Markdown table rows cannot contain literal carriage returns. To create a multi-line list inside a cell, insert HTML <br> tags (e.g. "Item 1<br>Item 2<br>Item 3"). This keeps the entire entry in a single clean row without breaking column alignments.

How do I handle optional or missing values in Tailwind CSS & Responsive Viewport Breakpoints?

Never leave table cells completely empty, as some strict Markdown parsers may collapse empty pipes. Instead, insert an em-dash ("—"), "N/A", or "None" to explicitly indicate that a value is not applicable.

Can I export this Tailwind CSS & Responsive Viewport Breakpoints table into CSV, Excel, or HTML?

Yes. In the interactive toolkit above, you can edit your data and use our integrated export tools to convert this table directly into CSV, JSON, HTML <table>, or LaTeX with a single click.