--- id: bad87fee1348bd9aedf08822 title: Adjust the Margin of an Element challengeType: 0 videoUrl: 'https://scrimba.com/c/cVJarHW' forumTopicId: 16654 localeTitle: 调整元素的外边距 --- ## Description
margin(外边距)控制元素的边框与其他元素之间的距离。 在这里,我们可以看到蓝色框和红色框都在黄色框里。请注意,红色框的margin值要比蓝色框的大,让它看起来比蓝色框要小。 当你增加蓝色的margin值,它会增加元素边框到其他周围元素的距离。
## Instructions
蓝色的框margin的值要跟红色框的一样大小。
## Tests
```yml tests: - text: 'blue-box class 的margin值应为20px。' testString: assert($(".blue-box").css("margin-top") === "20px"); ```
## Challenge Seed
```html
margin
padding
padding
```
## Solution
```html // solution required ``` /section>