--- id: bad82fee1322bd9aedf08721 title: Understand Absolute versus Relative Units challengeType: 0 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: يجب أن تحتوي فئة red-box خاصية padding . testString: 'assert($(".red-box").css("padding-top") != "0px" && $(".red-box").css("padding-right") != "0px" && $(".red-box").css("padding-bottom") != "0px" && $(".red-box").css("padding-left") != "0px", "Your red-box class should have a padding property.");' - text: يجب أن تعطي صفحتك red-box عناصر 1.5 م من padding . testString: 'assert(code.match(/\.red-box\s*?{\s*?.*?\s*?.*?\s*?padding:\s*?1\.5em/gi), "Your red-box class should give elements 1.5em of padding.");' ```
## Challenge Seed
```html
margin
padding
padding
```
## Solution
```js // solution required ```