Suggest an editImprove this articleRefine the answer for “Which properties are inherited by default?”. Your changes go to moderation before they’re published.Approval requiredContentWhat you’re changing🇺🇸EN🇺🇦UAPreviewTitle (EN)Short answer (EN)**By default, inherited properties** are mostly typography, text, and properties related to visibility and the cursor: `font-size`, `color`, `line-height`, `cursor`, `visibility`, etc. **Key point:** anything that affects the box model, sizing, and positioning (`margin`, `padding`, `display`, `position`) is not inherited.Shown above the full answer for quick recall.Answer (EN)ImageBy default, mostly **typography, text, and a few properties related to visibility and the cursor** are inherited. Key groups: --- ### **Inherited:** **Text and fonts** - `font-size` - `font-family` - `font-style` - `font-weight` - `line-height` - `letter-spacing` - `word-spacing` - `text-align` - `text-transform` - `text-indent` - `white-space` - `text-shadow` **Color** - `color` **List** - `list-style`, `list-style-type`, `list-style-position`, `list-style-image` **Table and block-level text features** - `quotes` **Cursor and interaction** - `cursor` - `visibility` **Others** - `pointer-events` (partially) - `direction` --- ### **Not inherited:** - `margin`, `padding`, `border` - `width`, `height` - `display` - `position`, `top/right/bottom/left` - `background-*` - `flex-*`, `grid-*` --- ### **Conclusion** The properties that are inherited are the ones it makes sense to **pass to children for consistent text styling**, while anything that affects the **box model, sizing, and positioning** is **not inherited**. If you need to force a property to inherit, you can set: ```css property: inherit; ``` And to reset it to its initial value: ```css property: initial; ```For the reviewerNote to the moderator (optional)Visible only to the moderator. Helps review go faster.