--- id: bad87fee1348bd9aedf08815 title: Make Circular Images with a border-radius challengeType: 0 videoUrl: 'https://scrimba.com/c/c2MvrcB' forumTopicId: 18229 dashedName: make-circular-images-with-a-border-radius --- # --description-- In addition to pixels, you can also specify the `border-radius` using a percentage. # --instructions-- Give your cat photo a `border-radius` of `50%`. # --hints-- Your image should have a border radius of `50%`, making it perfectly circular. ```js assert(parseInt($('img').css('border-top-left-radius')) > 48); ``` The `border-radius` value should use a percentage value of `50%`. ```js assert(code.match(/50%/g)); ``` # --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


```