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