--- title: Extend One Set of CSS Styles to Another Element --- ## Extend One Set of CSS Styles to Another Element ### Hint Use `@extend` ### Solution Use `@extend` to extend the `info` class into `info-important` like: ```html

Posts

This is an important post. It should extend the class ".info" and have its own CSS styles.

This is a simple post. It has basic styling and can be extended for other uses.

```