CSS Inheritance — a practical guide to CSS inheritance with clear examples you can reuse in real projects.
CSS Tutorial Series (96/109). Prefer one article? Read the complete CSS tutorial.
Short description
Use `inherit`, `initial`, `unset`, and `revert` intentionally.
Inheritance
body { color: #1c1917; }
.muted { color: inherit; opacity: 0.7; }