--- id: bad87fee1348bd9aedf08815 title: Make Circular Images with a border-radius challengeType: 0 videoUrl: 'https://scrimba.com/c/c2MvrcB' --- ## 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%.
## Tests
```yml tests: - text: Your image should have a border radius of 50%, making it perfectly circular. testString: assert(parseInt($("img").css("border-top-left-radius")) > 48, 'Your image should have a border radius of 50%, making it perfectly circular.'); - text: Be sure to use a percentage value of 50%. testString: assert(code.match(/50%/g), 'Be sure to use a percentage value of 50%.'); ```
## Challenge Seed
```html

CatPhotoApp

Click here to view more cat photos.

A cute orange cat lying on its back.

Things cats love:

  • cat nip
  • laser pointers
  • lasagna

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats


```
## Solution
```html

CatPhotoApp

Click here to view more cat photos.

A cute orange cat lying on its back.

Things cats love:

  • cat nip
  • laser pointers
  • lasagna

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats


```