--- id: 587d7791367417b2b2512ab4 title: Adjust the Width of an Element Using the width Property challengeType: 0 videoUrl: 'https://scrimba.com/c/cvVLPtN' forumTopicId: 301039 dashedName: adjust-the-width-of-an-element-using-the-width-property --- # --description-- You can specify the width of an element using the `width` property in CSS. Values can be given in relative length units (such as `em`), absolute length units (such as `px`), or as a percentage of its containing parent element. Here's an example that changes the width of an image to 220px: ```css img { width: 220px; } ``` # --instructions-- Add a `width` property to the entire card and set it to an absolute value of 245px. Use the `fullCard` class to select the element. # --hints-- Your code should change the `width` property of the card to 245 pixels by using the `fullCard` class selector. ```js const fullCard = code.match(/\.fullCard\s*{[\s\S]+?[^}]}/g); assert( fullCard && /width\s*:\s*245px\s*(;|})/gi.test(fullCard[0]) && $('.fullCard').css('maxWidth') === 'none' ); ``` # --seed-- ## --seed-contents-- ```html

Google

Google was founded by Larry Page and Sergey Brin while they were Ph.D. students at Stanford University.

``` # --solutions-- ```html

Google

Google was founded by Larry Page and Sergey Brin while they were Ph.D. students at Stanford University.

```