--- id: bad87fee1348bd9aedf08824 title: Add Different Padding to Each Side of an Element challengeType: 0 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: يجب أن تعطي 40px في blue-box أعلى العناصر 40px من padding . testString: 'assert($(".blue-box").css("padding-top") === "40px", "Your blue-box class should give the top of the elements 40px of padding.");' - text: يجب أن تعطي صفحتك blue-box حق العناصر المكوّنة من 20 20px من padding . testString: 'assert($(".blue-box").css("padding-right") === "20px", "Your blue-box class should give the right of the elements 20px of padding.");' - text: يجب أن تعطي صفحتك blue-box الجزء السفلي من العناصر 20 20px من padding . testString: 'assert($(".blue-box").css("padding-bottom") === "20px", "Your blue-box class should give the bottom of the elements 20px of padding.");' - text: '' testString: 'assert($(".blue-box").css("padding-left") === "40px", "Your blue-box class should give the left of the elements 40px of padding.");' ```
## Challenge Seed
```html
margin
padding
padding
```
## Solution
```js // solution required ```