--- id: 587d7791367417b2b2512ab4 title: Adjust the Width of an Element Using the width Property challengeType: 0 videoUrl: 'https://scrimba.com/c/cvVLPtN' --- ## 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.
## Tests
```yml tests: - text: Your code should change the width property of the card to 245 pixels by using the fullCard class selector. testString: assert($('.fullCard').css('width') === '245px' && /\.fullCard{\S*width:245px(;\S*}|})/.test($('style').text().replace(/\s/g ,''))); ```
## Challenge Seed
```html

Google

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

```
## Solution
```html

Google

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

```