2018-10-10 18:03:03 -04:00
---
id: 587d7fa7367417b2b2512bc6
title: Add Inline Styling to Elements
challengeType: 6
2019-08-28 16:26:13 +03:00
forumTopicId: 301475
2018-10-10 18:03:03 -04:00
localeTitle: Добавить встроенный стиль в элементы
---
## Description
2019-08-28 16:26:13 +03:00
< section id = 'description' >
D3 позволяет добавлять встроенные стили CSS для динамических элементов с помощью метода < code > style()< / code > . Метод < code > style()< / code > принимает в качестве аргумента пару ключ-значение, разделенную запятыми. Вот пример, чтобы задать цвет текста выбора синим: < code > selection.style(" color" ," blue" );< / code >
< / section >
2018-10-10 18:03:03 -04:00
## Instructions
2019-08-28 16:26:13 +03:00
< section id = 'instructions' >
Добавьте метод < code > style()< / code > в код в редакторе, чтобы весь отображаемый текст имел < code > font-family< / code > < code > verdana< / code > .
< / section >
2018-10-10 18:03:03 -04:00
## Tests
< section id = 'tests' >
```yml
tests:
2019-08-28 16:26:13 +03:00
- text: Your < code > h2</ code > elements should have a < code > font-family</ code > of verdana.
testString: assert($('h2').css('font-family') == 'verdana');
- text: Your code should use the < code > style()</ code > method.
testString: assert(code.match(/\.style/g));
2018-10-10 18:03:03 -04:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< div id = 'html-seed' >
```html
< body >
< script >
const dataset = [12, 31, 22, 17, 25, 18, 29, 14, 9];
d3.select("body").selectAll("h2")
.data(dataset)
.enter()
.append("h2")
.text((d) => (d + " USD"))
// Add your code below this line
// Add your code above this line
< / script >
< / body >
```
< / div >
< / section >
## Solution
< section id = 'solution' >
2019-08-28 16:26:13 +03:00
```html
2018-10-10 18:03:03 -04:00
// solution required
```
2019-08-28 16:26:13 +03:00
2018-10-10 18:03:03 -04:00
< / section >