---
id: 5d8a4cfbe6b6180ed9a1c9fd
title: Part 32
challengeType: 0
---
## 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`.
## Instructions
## Tests
```yml
tests:
- text: test-text
testString: 'assert($("g")[0].attributes.style.nodeValue === "font: 10px verdana;");'
```
## Challenge Seed
```html
```
### Before Test
## Solution