From 6eaacf526c91e7141c1601f920f81768462315ed Mon Sep 17 00:00:00 2001 From: Gregory Gubarev Date: Wed, 6 Mar 2019 20:49:37 +0400 Subject: [PATCH] Responsive Web Design: Added hint to Style Multiple Elements with a CSS Class (#24379) --- .../index.md | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) 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 64d5154c316..f3e62cb157d 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)