--- id: 587d7fa7367417b2b2512bc6 title: Add Inline Styling to Elements challengeType: 6 forumTopicId: 301475 localeTitle: Добавить встроенный стиль в элементы --- ## Description
D3 позволяет добавлять встроенные стили CSS для динамических элементов с помощью метода style() . Метод style() принимает в качестве аргумента пару ключ-значение, разделенную запятыми. Вот пример, чтобы задать цвет текста выбора синим: selection.style("color","blue");
## Instructions
Добавьте метод style() в код в редакторе, чтобы весь отображаемый текст имел font-family verdana .
## Tests
```yml tests: - text: Your h2 elements should have a font-family of verdana. testString: assert($('h2').css('font-family') == 'verdana'); - text: Your code should use the style() method. testString: assert(code.match(/\.style/g)); ```
## Challenge Seed
```html ```
## Solution
```html // solution required ```