2020-02-25 22:53:07 -06:00
|
|
|
---
|
|
|
|
id: 5d8a4cfbe6b6180ed9a1c9e7
|
|
|
|
title: Part 10
|
|
|
|
challengeType: 0
|
2021-01-13 03:31:00 +01:00
|
|
|
dashedName: part-10
|
2020-02-25 22:53:07 -06:00
|
|
|
---
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --description--
|
2020-02-25 22:53:07 -06:00
|
|
|
|
|
|
|
Give the container some space by adding a `padding` of `100px 10px` to the `body` element.
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --hints--
|
2020-02-25 22:53:07 -06:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
test-text
|
2020-02-25 22:53:07 -06:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
|
|
|
const body = code.match(/body\s*{[\s\S]+?[^}]}/g)[0];
|
|
|
|
assert(/padding\s*:\s*100px\s*10px\s*(;|})/g.test(body));
|
2020-02-25 22:53:07 -06:00
|
|
|
```
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --seed--
|
2020-02-25 22:53:07 -06:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
## --before-user-code--
|
|
|
|
|
|
|
|
```html
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>D3 Dashboard</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="dashboard"></div>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
```
|
|
|
|
|
|
|
|
## --seed-contents--
|
2020-02-25 22:53:07 -06:00
|
|
|
|
|
|
|
```html
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
background-color: #ccc;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard {
|
|
|
|
width: 980px;
|
|
|
|
height: 500px;
|
|
|
|
background-color: white;
|
|
|
|
box-shadow: 5px 5px 5px 5px #888;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
```
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --solutions--
|
2020-02-25 22:53:07 -06:00
|
|
|
|
|
|
|
```html
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
background-color: #ccc;
|
|
|
|
padding: 100px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard {
|
|
|
|
width: 980px;
|
|
|
|
height: 500px;
|
|
|
|
background-color: white;
|
|
|
|
box-shadow: 5px 5px 5px 5px #888;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
```
|