--- id: bad87fee1348bd9acdf08812 title: 调整图片的大小 challengeType: 0 videoUrl: 'https://scrimba.com/c/cM9MmCP' forumTopicId: 18282 dashedName: size-your-images --- # --description-- CSS 的 `width` 属性可以控制元素的宽度。 和设置文本字号一样,我们会以 `px`(像素)为单位来设置图片的宽度。 例如,如果你想创建一个叫 `larger-image` 的 CSS class,来控制 HTML 元素的宽度为 500px,就可以这样写: ```html ``` # --instructions-- 创建一个叫 `smaller-image` 的 CSS class,并用它来设置图片宽度为 100px。 # --hints-- `img` 元素应包含 `smaller-image` class。 ```js assert( $("img[src='https://bit.ly/fcc-relaxing-cat']").attr('class') .trim().split(/\s+/g).includes('smaller-image') ); ``` 图片宽度应为 100px。 ```js assert( $('img').width() < 200 && code.match(/\.smaller-image\s*{\s*width\s*:\s*100px\s*(;\s*}|})/i) ); ``` # --seed-- ## --seed-contents-- ```html

CatPhotoApp

Click here to view more cat photos.

A cute orange cat lying on its back.

Things cats love:

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats


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

CatPhotoApp

Click here to view more cat photos.

A cute orange cat lying on its back.

Things cats love:

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats


```