test(curriculum): check tests against solutions (#27716)

This commit is contained in:
Valeriy
2018-10-24 14:15:00 +03:00
committed by mrugesh mohapatra
parent 793621594a
commit 591309550b
9 changed files with 4795 additions and 2611 deletions

View File

@ -11,7 +11,7 @@ challengeType: 6
Using a lot of inline styles on HTML elements gets hard to manage, even for smaller apps. It's easier to add a class to elements and style that class one time using CSS rules. D3 has the <code>attr()</code> method to add any HTML attribute to an element, including a class name.
The <code>attr()</code> method works the same way that <code>style()</code> does. It takes comma-separated values, and can use a callback function. Here's an example to add a class of "container" to a selection:
<code>selection.attr("class", "container");</code>
Note that the "class" parameter will remain the same whenever you need to add a class and only the "container" parameter will change.
</section>
@ -74,7 +74,27 @@ tests:
## Solution
<section id='solution'>
```js
.attr("class","bar");
```html
<style>
.bar {
width: 25px;
height: 100px;
display: inline-block;
background-color: blue;
}
</style>
<body>
<script>
const dataset = [12, 31, 22, 17, 25, 18, 29, 14, 9];
d3.select("body").selectAll("div")
.data(dataset)
.enter()
.append("div")
// Add your code below this line
.attr("class","bar");
// Add your code above this line
</script>
</body>
```
</section>