--- id: bad87fee1348bd9aedf08815 title: Make Circular Images with a border-radius challengeType: 0 videoUrl: '' localeTitle: جعل الصور الدائرية مع نصف قطرها --- ## Description
بالإضافة إلى وحدات البكسل ، يمكنك أيضًا تحديد نطاق border-radius باستخدام نسبة مئوية.
## Instructions
إعطاء صورة القط الخاص بك border-radius 50% .
## Tests
```yml tests: - text: يجب أن يكون لشعاعك نصف قطر حدًا 50% ، مما يجعله دائريًا تمامًا. testString: 'assert(parseInt($("img").css("border-top-left-radius")) > 48, "Your image should have a border radius of 50%, making it perfectly circular.");' - text: تأكد من استخدام قيمة النسبة المئوية 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 ```