Classification

Sans Serif

Una tipografía sin serifas — 'sans' significa 'sin' en francés; tiene una apariencia limpia y moderna, popular en el diseño digital.

Sans-serif (from the French 'sans', meaning 'without') refers to typefaces that lack the small finishing strokes (serifs) at the ends of letter strokes. The result is a cleaner, more minimal letterform that has come to define modern digital design. Sans-serif typefaces dominate UI design, mobile interfaces, and contemporary web typography.

The first commercially successful sans-serif typefaces emerged in the early 19th century and were initially called 'grotesque' — a term that reflected how unusual and stripped-down they seemed to eyes accustomed to serif type. Over time, successive waves of geometric sans, humanist sans, and neo-grotesque design transformed them from novelties into the predominant form of the Latin alphabet on screen.

/* Neo-grotesque: neutral, reliable, ubiquitous in UI */
.ui-sans {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

/* Geometric sans: clean, modern, Bauhaus-influenced */
.geometric-sans {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

/* Humanist sans: warmer, more readable for body text */
.humanist-sans {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* The system-ui stack often resolves to a sans-serif */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

Sans-serif fonts are particularly well-suited to screen rendering because their stroke uniformity tends to perform better at lower resolutions and smaller sizes than the thin hairline strokes that appear in many high-contrast serif designs. This is why most operating systems default to sans-serif system fonts: San Francisco (macOS/iOS), Segoe UI (Windows), Roboto (Android).

The major categories within sans-serif — neo-grotesque (Inter, Roboto), geometric (Poppins, Montserrat), and humanist (Open Sans, Source Sans 3) — each carry distinct visual personalities and work better in different contexts. Choosing between them is one of the first and most consequential typographic decisions in any design system.

One practical note: the CSS generic family name sans-serif serves as a final fallback in any font-family declaration. Every operating system ships at least one sans-serif font, guaranteeing that even if all named fonts fail to load, the browser can still render readable text. Building a thoughtful font stack — starting with your preferred web font, followed by system equivalents, and ending with sans-serif — ensures graceful degradation across all environments.

Related Terms

Fonts That Illustrate This Concept

Learn More