--- id: 5d8a4cfbe6b6180ed9a1c9fd title: Part 32 challengeType: 0 dashedName: part-32 --- # --description-- `style` is a function similar to `attr`, but is more for manipulating CSS styles rather than element attributes. Add a `style` function to the selection that sets the `font` to `10px verdana`. # --hints-- test-text ```js assert($('g')[0].attributes.style.nodeValue === 'font: 10px verdana;'); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```