--- id: 5d8a4cfbe6b6180ed9a1ca5d title: Part 126 challengeType: 0 dashedName: part-126 --- # --description-- Set the `align` attribute to `center`. # --hints-- test-text ```js assert( $('.dashboard div table tbody tr td')[1] .getAttribute('align') .toLowerCase() === 'center' ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```