| name | modern-css |
| description | Teaches agents to write modern CSS using native features instead of legacy hacks, workarounds, and JavaScript. Covers layout, animation, color, typography, selectors, and workflow patterns with 64 old-vs-modern comparisons. The agent should always prefer modern CSS approaches, warn about browser compatibility for newer features, and ask the user before using techniques with limited browser availability (<80% support).
|
Modern CSS
The CSS spec has evolved dramatically. Many old hacks — absolute-position centering,
padding-top aspect ratios, JS scroll listeners, Sass color functions — now have clean,
native replacements. This skill ensures you always reach for the modern approach first.
Reference: modern-css.com — all techniques sourced from
this site. Visit individual pages for live demos and deeper explanations.
Support data: Browser support percentages represent global user coverage from
caniuse.com, last updated February 2026. These numbers shift as
browsers release updates — verify on caniuse if precision matters for a project.
How to Use This Skill
When writing or reviewing CSS:
- Always use techniques in the Widely Available tier (90%+ support) without asking.
If you spot legacy patterns, refactor them to the modern equivalent.
- Suggest techniques in the Newly Available tier (80–90% support). Mention they are
newly available and let the user decide. Offer a fallback if relevant.
- Ask first before using Limited Availability techniques (<80% support). Warn about
browser support and suggest a progressive-enhancement approach or fallback.
- If the user has legacy browser requirements (e.g. older Safari, corporate browsers),
ask before using any technique — even Widely Available ones — since support percentages
assume modern browser versions. Use
@supports to provide fallbacks.
When you see old CSS patterns in existing code, point them out and suggest the modern
replacement with a brief explanation of why it's better.
Widely Available (90%+ support) — Always Use
These techniques are well-established and work across all modern browsers. Use them
without hesitation.
Layout
Centering elements — place-items: center
.parent { position: relative; }
.child {
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
}
.parent {
display: grid;
place-items: center;
}
Reference →
Spacing elements — gap
.grid > * { margin-right: 16px; }
.grid > *:last-child { margin-right: 0; }
.grid {
display: flex;
gap: 16px;
}
Reference →
Aspect ratios — aspect-ratio
.wrapper { padding-top: 56.25%; position: relative; }
.inner { position: absolute; inset: 0; }
.video-wrapper {
aspect-ratio: 16 / 9;
}
Reference →
Positioning shorthand — inset
.overlay { top: 0; right: 0; bottom: 0; left: 0; }
.overlay {
position: absolute;
inset: 0;
}
Reference →
Sticky headers — position: sticky
// add/remove .fixed class based on scroll position
.header {
position: sticky;
top: 0;
}
Reference →
Responsive images — object-fit
.card-image {
background-image: url(...);
background-size: cover;
background-position: center;
}
img {
object-fit: cover;
width: 100%;
height: 200px;
}
Reference →
Filling available space — stretch
.full { width: calc(100% - 40px); }
.full { width: stretch; }
Reference →
Preventing scroll chaining — overscroll-behavior
// modal.addEventListener('wheel', e => e.preventDefault(), { passive: false })
.modal-content {
overflow-y: auto;
overscroll-behavior: contain;
}
Reference →
Preventing scrollbar layout shift — scrollbar-gutter
body { overflow-y: scroll; }
body { scrollbar-gutter: stable; }
Reference →
Grid template areas — named areas
.item { grid-column: 1 / 3; grid-row: 2; }
.layout {
display: grid;
grid-template-areas:
"header header"
"sidebar main"
"footer footer";
}
.header { grid-area: header; }
Reference →
Modal dialogs — <dialog> element
.overlay { position: fixed; z-index: 999; }
dialog { padding: 1rem; }
dialog::backdrop { background: rgb(0 0 0 / .5); }
Reference →
Direction-aware layouts — logical properties
margin-left: 1rem;
padding-right: 1rem;
[dir="rtl"] .box { margin-right: 1rem; }
margin-inline-start: 1rem;
padding-inline-end: 1rem;
border-block-start: 1px solid;
Reference →
Responsive components — @container
@media (min-width: 768px) {
.card { grid-template-columns: auto 1fr; }
}
.wrapper { container-type: inline-size; }
@container (width > 400px) {
.card { grid-template-columns: auto 1fr; }
}
Reference →
Scroll snapping — scroll-snap
// $('.carousel').slick({ ... })
.carousel {
scroll-snap-type: x mandatory;
overflow-x: auto;
}
.carousel > * { scroll-snap-align: start; }
Reference →
Selectors
Parent selection — :has()
.card:has(img) {
grid-template-rows: auto 1fr;
}
Reference →
Grouping selectors — :is()
.card h1, .card h2, .card h3, .card h4 { margin-bottom: 0.5em; }
.card :is(h1, h2, h3, h4) { margin-bottom: 0.5em; }
Reference →
Low-specificity resets — :where()
.reset ul, .reset ol { margin: 0; }
:where(ul, ol) {
margin: 0;
padding-inline-start: 1.5rem;
}
Reference →
Keyboard-only focus — :focus-visible
:focus { outline: 2px solid blue; }
:focus-visible {
outline: 2px solid var(--focus-color);
}
Reference →
Color
Styling form controls — accent-color
input[type="checkbox"] { appearance: none; }
input[type="checkbox"],
input[type="radio"] {
accent-color: #7c3aed;
}
Reference →
Perceptually uniform colors — oklch()
--brand: #4f46e5;
--brand-light: #818cf8;
--brand-dark: #3730a3;
--brand: oklch(0.55 0.2 264);
--brand-light: oklch(0.75 0.2 264);
--brand-dark: oklch(0.35 0.2 264);
Reference →
Wide-gamut colors — display-p3 / oklch
.hero { color: rgb(200, 80, 50); }
.hero { color: oklch(0.7 0.25 29); }
Reference →
Frosted glass — backdrop-filter
.card::before { content: ''; background-image: url(bg.jpg); filter: blur(12px); z-index: -1; }
.glass {
backdrop-filter: blur(12px);
background: rgba(255, 255, 255, .1);
}