--- id: 5d8a4cfbe6b6180ed9a1ca5f title: Step 128 challengeType: 0 dashedName: step-128 --- # --description-- Set the `width` to `16px` and the `height` to `16px` using the `style` function. # --hints-- test-text ```js const div = $('.dashboard div table tbody tr td div')[0]; assert(div.style.width == '16px' && div.style.height === '16px'); ``` # --seed-- ## --before-user-code-- ```html