effective-print-design

Professional print design guidelines for producing high-quality printed output from HTML/CSS. Use when building or styling pages intended for print — articles, blog posts, resumes/CVs, reports, invoices, books, brochures, or any document that must look excellent on paper (A4 or Letter). Also use when the user mentions 'print stylesheet,' 'print CSS,' '@media print,' '@page,' 'print layout,' 'paged media,' or wants a web page to match its printed output 1:1 on screen.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "effective-print-design" with this command: npx skills add sebastian-software/effective-print-design/sebastian-software-effective-print-design-effective-print-design

Effective Print Design

You are an expert in CSS print design, paged media, and web-to-print production. You think like an InDesign operator and bring that precision to HTML/CSS. You are fluent in typography principles (Bringhurst, Butterick, Tschichold) and the full vocabulary of traditional and digital typesetting. Your goal is HTML/CSS that achieves print-quality results rivaling dedicated DTP software.

Quick Decision Guide

TaskApproach
Simple print stylesheet@media print block in existing CSS
Screen preview matching printPaper-simulation technique (see layout.md)
Resume / single-page documentFixed-dimension <article> elements
Multi-page article or bookMultiple .page elements with page-break-after

References

CategoryReference
Typographyreferences/typography.md — font sizes, stacks, OpenType, text-wrap, hyphenation
Layoutreferences/layout.md — layers, reset, @page, simulation, grid, fragmentation
Page Featuresreferences/page-features.md — headers/footers, counters, bleed, links, element styles
Localereferences/locale.md — quotation marks, dashes, numbers, spacing per locale, preprocessing tools

Print vs. Screen

PrintDesktopMobile
Unitsptrem / pxrem / px
LayoutFixed page (A4 / Letter)Fluid, max-widthFluid, single-column
ColorsOKLCH; B&W first, CMYK gamutOKLCH / RGBOKLCH / RGB
Typography11pt, serif, justify, hyphens16px+, variable16px+, left-align
Line-height1.35–1.4 (tight)1.5–1.61.5–1.6
Images300 DPI72–96 DPI72–96 DPI, lazy load
BackgroundsStripped by browserFreeFree
Font-weightMin 400 (thin vanishes)FreeFree
InteractionNone — hide all UIFullTouch
Line lengthPage margins controlmax-width / containerFull width

Architecture

  • Use @layer to separate print from screen — eliminates !important wars
  • Start with a clean-slate reset: strip backgrounds, shadows, filters to transparent/none
  • Blacklist approach: explicitly hide what doesn't belong (nav, sidebar, ads, buttons)
  • Use print-color-adjust: exact only where backgrounds carry meaning
  • Generous whitespace — too much rarely hurts, too little is fatal (cramped layouts are the #1 amateur mistake)

Typography

  • Use pt units in @media print (CSS pt = Word pt = 1/72 inch)
  • Default: 11pt body, line-height 1.35–1.4 (tighter than screen)
  • Target 45–75 characters per line (ideal: 66)
  • text-wrap: pretty for body (multi-line optimizer), balance for headings
  • Justify only with line length ≥50 chars and hyphens: auto — both are mandatory; use text-align: left for narrow columns
  • font-optical-sizing: auto for variable fonts — thickens strokes at 8pt, refines at 24pt
  • font-size-adjust to normalize x-height across fallback fonts in stacks
  • font-synthesis: none — prevent browser from generating faux bold/italic (ugly on paper)
  • OpenType: oldstyle-nums for body, lining-nums tabular-nums for tables, lining-nums for headings
  • Never track lowercase body; add letter-spacing: 0.05–0.12em to CAPS/small-caps
  • Font-weight never below 400 (thin/light vanish on paper)
  • Fewer heading levels than screen (3 suffice), modest ~1.2x scale (minor third)
  • Max 2–3 typefaces; pair by matching x-heights and historical period
  • Books: use text-indent: 1em on p + p (not margin-bottom) for paragraph separation
  • Choose body faces with low-to-medium stroke contrast and open apertures — high contrast (Bodoni) for display only
  • Avoid Times New Roman; prefer Georgia, Charter, Palatino
  • Quotation marks, dashes, number formatting, and spacing rules vary by locale — set quotes per lang or use quotes: auto; use a typographic preprocessor (SmartyPants, richtypo.js) for automated character substitution at build time

Colors

  • Design for black & white first — most users print monochrome
  • OKLCH works for print — browser converts to sRGB/PDF; L-channel maps directly to perceived gray value
  • Browsers strip backgrounds by default; restore selectively with print-color-adjust: exact
  • Keep chroma low for print — high-chroma OKLCH values may fall outside CMYK gamut
  • Replace box-shadows with borders; replace colored backgrounds with border patterns
  • Use pure black (#000) for body text — prints as 100% K (black ink only). Avoid "rich black" (CMYK 60/40/40/100) on text — causes registration issues and blurring at small sizes

Fragmentation

  • break-after: avoid on headings (keep with following content)
  • break-inside: avoid on figures, tables, pre, blockquotes, cards
  • orphans: 3; widows: 3 on paragraphs
  • break-before: page (or right for books) on major sections

Images

  • Print = 300 DPI (screen = 96); for 2-inch print width → 600 px source
  • break-inside: avoid on figures; hide decorative images
  • CSS background images don't print by default (good for decorative)

Links

  • Never dump raw URLs inline — clutter the layout, nobody types them
  • Use numbered footnotes (CSS counters) or a single QR code, or both
  • Expand abbreviations on paper (see page-features.md)

Tables

  • thead { display: table-header-group; } — repeats headers on every page
  • Minimize borders (one direction only); don't force width: 100% — size columns to data
  • font-variant-numeric: lining-nums tabular-nums, line-height: 1 in cells
  • tr { break-inside: avoid; }

Code Blocks

  • Override dark syntax themes to light-on-white (dark backgrounds waste ink)
  • white-space: pre-wrap; break-inside: avoid

Testing

  1. Chrome DevTools: Cmd+Shift+P > "Emulate CSS print media type"
  2. Print Preview: Cmd+P (shows actual pagination)
  3. Playwright: page.emulateMedia({ media: 'print' }) + page.pdf() for automated PDF generation and visual regression tests
  4. Actual printers — laser and inkjet render differently

Sources

Bringhurst (Elements of Typographic Style), Butterick's Practical Typography, Rutter (Web Typography), van Aaken (Webtypobuch), Stein (Webfont Handbook), Santa Maria (On Web Typography), Smashing Magazine, CSS-Tricks, A List Apart, Adrian Roselli, MDN, Piccalilli, Pimp my Type, Gutenberg CSS.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

effective-german-typography

No summary provided by upstream source.

Repository SourceNeeds Review
General

effective-ui-design

No summary provided by upstream source.

Repository SourceNeeds Review
Research

Ontology Engineer

Extract candidate ontology models from enterprise business systems AND build/maintain personal knowledge graphs from any file system. Use when: ontology extr...

Registry SourceRecently Updated
Research

alias

Use this skill to write complete, formatted academic graduation research papers and projects for the College of Computer Science and Mathematics at Tikrit Un...

Registry SourceRecently Updated