--- id: 5d8a4cfbe6b6180ed9a1ca4f title: Step 112 challengeType: 0 dashedName: step-112 --- # --description-- Give the table a `width` of `200` and a `height` of `120` using `attr`. # --hints-- test-text ```js const table = $('.dashboard div table')[0]; assert( table.getAttribute('width') == 200 && table.getAttribute('height') == 120 ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```