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