--- id: 5d8a4cfbe6b6180ed9a1ca54 title: Part 117 challengeType: 0 dashedName: part-117 --- # --description-- Your table is going to have three columns, one for the platform name, one for the color it is using on your dashboard, and a third to display the number of followers. So you want the title to take up all three columns. Set the `colspan` attribute of the `th` to `3` so it spans all three of these columns. # --hints-- test-text ```js assert($('.dashboard div table thead tr th')[0].getAttribute('colspan') == 3); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```