From 056a1b96d09ae985c6d9cf2693245feb63a73191 Mon Sep 17 00:00:00 2001 From: Gregory Gubarev Date: Tue, 23 Oct 2018 03:20:00 +0400 Subject: [PATCH] Responsive Web Design: Added hint to Add Borders Around Your Elements (#19589) Added hint to Add Borders Around Your Elements (https://learn.freecodecamp.org/responsive-web-design/basic-css/add-borders-around-your-elements) --- .../add-borders-around-your-elements/index.md | 33 ++++++++++++++++--- 1 file changed, 28 insertions(+), 5 deletions(-) diff --git a/guide/english/certifications/responsive-web-design/basic-css/add-borders-around-your-elements/index.md b/guide/english/certifications/responsive-web-design/basic-css/add-borders-around-your-elements/index.md index bb49d00582..5e9cebb622 100644 --- a/guide/english/certifications/responsive-web-design/basic-css/add-borders-around-your-elements/index.md +++ b/guide/english/certifications/responsive-web-design/basic-css/add-borders-around-your-elements/index.md @@ -2,9 +2,32 @@ title: Add Borders Around Your Elements --- ## Add Borders Around Your Elements - -This is a stub. Help our community expand it. - -This quick style guide will help ensure your pull request gets accepted. - + +We need to create a class called ```thick-green-border```. This class should add a 10px, solid, green border around an HTML element. and after, we need to apply the class to your cat photo. + +## Solution: + +We add between `````` new class ```thick-green-border``` with properties: + +```js + .thick-green-border { + border-color: green; + border-width: 10px; + border-style: solid; + } +``` +Also, we can add properties this way: + +```js + .thick-green-border { + border: 10px solid green; + } +``` +The final stage is adding this class to image: + +```js + +```