--- id: bad87fee1348bd9aedf08815 title: Make Circular Images with a border-radius challengeType: 0 videoUrl: '' localeTitle: Сделать круговые изображения с радиусом границы --- ## Description
В дополнение к пикселям вы также можете указать border-radius используя процент.
## Instructions
Дайте вашей фотографии кошки border-radius 50% .
## Tests
```yml tests: - text: 'Ваше изображение должно иметь радиус границы 50% , что делает его идеально круговым.' testString: 'assert(parseInt($("img").css("border-top-left-radius")) > 48, "Your image should have a border radius of 50%, making it perfectly circular.");' - text: Обязательно используйте процентное значение 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
```js // solution required ```