Why is not the border showing up around the image?

Border around the picture not showing up for some reason. It was working initially but not anymore and cannot seem to understand why.
Code:

You have an extra bracket above your .black-border prop

} <<<<<<<<<<<< Take this out
.black-border{
border-color: black;
border-style: solid;
border-width: 10px;
border-radius: 50%;
}

Edit:
And you need to add and β€˜s’ to class in your tag.

1 Like

it’s working fine

but minify the code

.black-border{
  border: 10px solid black;
  border-radius: 50%;
}

@LearnTheNew

1 Like