--- id: bad87fee1348bd9aedf08815 title: Haz imágenes circulares usando border-radius (radio de borde) challengeType: 0 videoUrl: 'https://scrimba.com/c/c2MvrcB' forumTopicId: 18229 dashedName: make-circular-images-with-a-border-radius --- # --description-- Además de los píxeles, también puedes especificar el `border-radius` usando un porcentaje. # --instructions-- Dale a tu foto de gato un `border-radius` de `50%`. # --hints-- Tu imagen debe tener un "border-radius" de `50%`, lo que hará que el borde sea perfectamente circular. ```js assert(parseInt($('img').css('border-top-left-radius')) > 48); ``` El valor `border-radius` debe usar un valor porcentual de `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


```