--- id: bad87fee1348bd9aedf08815 title: Make Circular Images with a border-radius challengeType: 0 videoUrl: '' localeTitle: Faça imagens circulares com um raio de borda --- ## Description
Além dos pixels, você também pode especificar o border-radius da border-radius usando uma porcentagem.
## Instructions
Dê a sua foto de gato um border-radius de border-radius de 50% .
## Tests
```yml tests: - text: 'Sua imagem deve ter um raio de borda de 50% , tornando-a perfeitamente circular.' testString: 'assert(parseInt($("img").css("border-top-left-radius")) > 48, "Your image should have a border radius of 50%, making it perfectly circular.");' - text: Certifique-se de usar um valor percentual de 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 ```