--- id: bad87fee1348bd9aedf08815 title: Creare immagini circolari con il border-radius challengeType: 0 videoUrl: 'https://scrimba.com/c/c2MvrcB' forumTopicId: 18229 dashedName: make-circular-images-with-a-border-radius --- # --description-- Oltre che con i pixel, รจ anche possibile specificare il `border-radius` utilizzando una percentuale. # --instructions-- Dai alla foto del gatto un `border-radius` del `50%`. # --hints-- La tua immagine dovrebbe avere un border-radius del `50%`, rendendola perfettamente circolare. ```js assert(parseInt($('img').css('border-top-left-radius')) > 48); ``` Il valore di `border-radius` dovrebbe usare un valore percentuale di `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


```