--- id: bad87fee1348bd9aefe08806 title: Style Multiple Elements with a CSS Class challengeType: 0 videoUrl: '' localeTitle: Estilo vários elementos com uma classe CSS --- ## Description
As classes permitem que você use os mesmos estilos CSS em vários elementos HTML. Você pode ver isso aplicando sua classe de red-text ao primeiro elemento p .
## Instructions
## Tests
```yml tests: - text: Seu elemento h2 deve estar vermelho. testString: 'assert($("h2").css("color") === "rgb(255, 0, 0)", "Your h2 element should be red.");' - text: Seu elemento h2 deve ter a classe red-text . testString: 'assert($("h2").hasClass("red-text"), "Your h2 element should have the class red-text.");' - text: Seu primeiro elemento p deve ser vermelho. testString: 'assert($("p:eq(0)").css("color") === "rgb(255, 0, 0)", "Your first p element should be red.");' - text: Seu segundo e terceiro elementos p não devem ser vermelhos. testString: 'assert(!($("p:eq(1)").css("color") === "rgb(255, 0, 0)") && !($("p:eq(2)").css("color") === "rgb(255, 0, 0)"), "Your second and third p elements should not be red.");' - text: Seu primeiro elemento p deve ter a classe red-text . testString: 'assert($("p:eq(0)").hasClass("red-text"), "Your first p element should have the class red-text.");' ```
## Challenge Seed
```html

CatPhotoApp

Click here to view more cat photos.

A cute orange cat lying on its back.

Things cats love:

  • cat nip
  • laser pointers
  • lasagna

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats


```
## Solution
```js // solution required ```