--- id: bad88fee1348bd9aedf08825 title: Adjust the Padding of an Element challengeType: 0 guideUrl: 'https://arabic.freecodecamp.org/guide/certificates/adjust-the-padding-of-an-element' videoUrl: '' localeTitle: ضبط الحشو من عنصر --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: يجب أن تعطي فئة blue-box عناصر 20px من padding . testString: 'assert($(".blue-box").css("padding-top") === "20px", "Your blue-box class should give elements 20px of padding.");' ```
## Challenge Seed
```html
margin
padding
padding
```
## Solution
```js // solution required ```