diff --git a/guide/english/certifications/responsive-web-design/basic-css/prioritize-one-style-over-another/index.md b/guide/english/certifications/responsive-web-design/basic-css/prioritize-one-style-over-another/index.md index 4fb62b2f5f..20852813dc 100644 --- a/guide/english/certifications/responsive-web-design/basic-css/prioritize-one-style-over-another/index.md +++ b/guide/english/certifications/responsive-web-design/basic-css/prioritize-one-style-over-another/index.md @@ -3,8 +3,50 @@ title: Prioritize One Style Over Another --- ## Prioritize One Style Over Another -This is a stub. Help our community expand it. - -This quick style guide will help ensure your pull request gets accepted. - +We need to create a CSS class called ```pink-text``` that gives an our ```h1``` element the color pink. + +### Solution + + Between `````` create a class called ```pink-text```: + +```css + + ``` + And add in this class ```color``` with value of ```pink```: + + ```css + .pink-text { + color: pink; + } + ``` +After, add this class to our ```h1``` element: + +```css +