diff --git a/guide/english/certifications/responsive-web-design/basic-css/make-circular-images-with-a-border-radius/index.md b/guide/english/certifications/responsive-web-design/basic-css/make-circular-images-with-a-border-radius/index.md
index 9022d88940..011038e5e0 100644
--- a/guide/english/certifications/responsive-web-design/basic-css/make-circular-images-with-a-border-radius/index.md
+++ b/guide/english/certifications/responsive-web-design/basic-css/make-circular-images-with-a-border-radius/index.md
@@ -3,8 +3,18 @@ title: Make Circular Images with a border-radius
---
## Make Circular Images with a border-radius
-This is a stub. Help our community expand it.
-
-This quick style guide will help ensure your pull request gets accepted.
-
+We need to give our cat photo a ```border-radius``` of ```50%```.
+
+### Solution
+
+In class ```smaller-image``` add a ```border-radius``` of ```50%```:
+
+```css
+ .smaller-image {
+ width: 100px;
+ border-radius: 50%;
+ }
+```
+
+This class already assigned to our ```img``` element and making it perfectly circular.