fix(curriculum): RPG Step 11 - Update description and first hint to give more context (#52992)

This commit is contained in:
Axel Soubielle Almada
2024-01-06 08:51:12 +01:00
committed by GitHub
parent 75ede26c6c
commit c0ac7ff3c8

View File

@@ -7,11 +7,11 @@ dashedName: step-11
# --description--
Give both your `#controls` and `#stats` elements a `border` of `1px solid #0a0a23`, a `#0a0a23` text color, and `5px` of padding.
Using a selector list (`selector1, selector2`) give both your `#controls` and `#stats` elements a `border` of `1px solid #0a0a23`, a `#0a0a23` text color, and `5px` of `padding`.
# --hints--
You should have a `#controls, #stats` selector.
You should have a `#controls, #stats` selector list.
```js
const selector = new __helpers.CSSHelp(document).getStyle('#controls, #stats');