--- id: bad87fee1348bd9aedf08815 title: Створіть круглі зображення з радіусом, що межує challengeType: 0 videoUrl: 'https://scrimba.com/c/c2MvrcB' forumTopicId: 18229 dashedName: make-circular-images-with-a-border-radius --- # --description-- В додаток до пікселів, ви також можете вказати `border-radius`, використовуючи відсоткові відношення. # --instructions-- Задайте світлину з котом `border-radius` на `50%`. # --hints-- Ваше зображення має радіус, що межує з `50%`, роблячи його при цьому ідеально круглим. ```js assert(parseInt($('img').css('border-top-left-radius')) > 48); ``` Значення `border-radius` повинне використовувати відсоткове відношення значення `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


```