--- id: bad87fee1348bd9aedf08815 title: Make Circular Images with a border-radius challengeType: 0 videoUrl: 'https://scrimba.com/c/c2MvrcB' forumTopicId: 18229 localeTitle: 用 border-radius 制作圆形图片 --- ## Description
除像素外,你也可以使用百分比来指定border-radius的值。
## Instructions
border-radius的值设置为50%
## Tests
```yml tests: - text: '你图片的边框圆角应设置为50%,让它看起来就像一个完整的圆。' testString: assert(parseInt($("img").css("border-top-left-radius")) > 48); - text: '请确保百分值为50%。' testString: assert(code.match(/50%/g), '请确保百分值为50%。'); ```
## Challenge Seed
```html

CatPhotoApp

点击查看更多猫图.

一只仰卧着的萌猫

猫咪最喜欢的三件东西:

  • 猫薄荷
  • 激光笔
  • 千层饼

猫咪最讨厌的三件东西:

  1. 跳蚤
  2. 打雷
  3. 同类


```
## Solution
```html // solution required ```