--- id: bad87fee1348bd9aedf08815 title: Make Circular Images with a border-radius challengeType: 0 videoUrl: '' localeTitle: Hacer imágenes circulares con un radio de borde --- ## Description
Además de los píxeles, también puede especificar el border-radius del border-radius usando un porcentaje.
## Instructions
Dale a tu foto de gato un border-radius de border-radius del 50% .
## Tests
```yml tests: - text: 'Su imagen debe tener un radio de borde del 50% , por lo que es perfectamente 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: Asegúrese de utilizar un valor porcentual del 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 ```