freeCodeCamp/guide/english/certifications/responsive-web-design/basic-css/add-borders-around-your-ele.../index.md

926 B

title
Add Borders Around Your Elements

Add Borders Around Your Elements

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 <style> and </style> new class thick-green-border with properties:

  .thick-green-border {
    border-color: green;
    border-width: 10px;
    border-style: solid;
  }

Also, we can add properties this way:

  .thick-green-border {
    border: 10px solid green;
  }

The final stage is adding this class to image:

<img class="smaller-image thick-green-border" 
src="https://bit.ly/fcc-relaxing-cat" 
alt="A cute orange cat lying on its back.">