diff --git a/guide/english/certifications/responsive-web-design/basic-css/style-multiple-elements-with-a-css-class/index.md b/guide/english/certifications/responsive-web-design/basic-css/style-multiple-elements-with-a-css-class/index.md index 64d5154c31..f3e62cb157 100644 --- a/guide/english/certifications/responsive-web-design/basic-css/style-multiple-elements-with-a-css-class/index.md +++ b/guide/english/certifications/responsive-web-design/basic-css/style-multiple-elements-with-a-css-class/index.md @@ -3,8 +3,17 @@ title: Style Multiple Elements with a CSS Class --- ## Style Multiple Elements with a CSS Class -This is a stub. Help our community expand it. - -This quick style guide will help ensure your pull request gets accepted. - +We need to applying our ```red-text``` class to the first ```p``` element. + +### Solution + +In the opening tag of element ```p``` we need to add ```red-text``` class: + +```css +
Click here to view more cat photos.
+``` + +### Useful links + +- [Class selectors](https://developer.mozilla.org/en-US/docs/Web/CSS/Class_selectors)