Click here to view more cat photos.

Things cats love:
- cat nip
- laser pointers
- lasagna
Top 3 things cats hate:
- flea treatment
- thunder
- other cats
--- id: bad87fee1348bd9acdf08812 title: 画像のサイズを変更する challengeType: 0 forumTopicId: 18282 dashedName: size-your-images --- # --description-- CSS には要素の幅を制御する `width` というプロパティがあります。 フォントと同じように、`px` (ピクセル) を使用して画像の幅を指定します。 例えば、HTML 要素に 500 ピクセルの幅を与える `larger-image` という CSS クラスを作成したい場合、次のようにします: ```html ``` # --instructions-- `smaller-image` というクラスを作成し、それを使用して画像のサイズを幅 100 ピクセルに変更してください。 # --hints-- `img` 要素にはクラス `smaller-image` が必要です。 ```js assert( $("img[src='https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg']").attr('class') .trim().split(/\s+/g).includes('smaller-image') ); ``` 画像の幅が 100 ピクセルになるようにしてください。 ```js assert( $('img').width() < 200 && code.match(/\.smaller-image\s*{\s*width\s*:\s*100px\s*(;\s*}|})/i) ); ``` # --seed-- ## --seed-contents-- ```html
Click here to view more cat photos.
Things cats love:
Top 3 things cats hate:
Click here to view more cat photos.
Things cats love:
Top 3 things cats hate: