diff --git a/guide/english/certifications/front-end-libraries/sass/extend-one-set-of-css-styles-to-another-element/index.md b/guide/english/certifications/front-end-libraries/sass/extend-one-set-of-css-styles-to-another-element/index.md index 063c73b9e7..30825e5f27 100644 --- a/guide/english/certifications/front-end-libraries/sass/extend-one-set-of-css-styles-to-another-element/index.md +++ b/guide/english/certifications/front-end-libraries/sass/extend-one-set-of-css-styles-to-another-element/index.md @@ -3,8 +3,35 @@ title: Extend One Set of CSS Styles to Another Element --- ## Extend One Set of CSS Styles to Another Element -This is a stub. Help our community expand it. +### Hint -This quick style guide will help ensure your pull request gets accepted. +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.

+
+```