--- id: 5d8a4cfbe6b6180ed9a1c9e7 title: Part 10 challengeType: 0 dashedName: part-10 --- # --description-- Give the container some space by adding a `padding` of `100px 10px` to the `body` element. # --hints-- test-text ```js const body = code.match(/body\s*{[\s\S]+?[^}]}/g)[0]; assert(/padding\s*:\s*100px\s*10px\s*(;|})/g.test(body)); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```