--- id: bad87fee1348bd9aedf08815 title: Criar imagens redondas com border-radius challengeType: 0 videoUrl: 'https://scrimba.com/c/c2MvrcB' forumTopicId: 18229 dashedName: make-circular-images-with-a-border-radius --- # --description-- Além dos pixels, você também pode definir o valor da propriedade `border-radius` usando porcentagem. # --instructions-- Dê à foto do gato a propriedade `border-radius` com valor de `50%`. # --hints-- A imagem deve ter a propriedade border-radius com valor de `50%`, tornando-a perfeitamente redonda. ```js assert(parseInt($('img').css('border-top-left-radius')) > 48); ``` O valor da propriedade `border-radius` deve ser `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


```