Hello working on a course over at freecodecamp.com and I am supposed to add border width color and style to an image via a class.
I am not having luck getting it to take though. I cannot see what I am doing wrong.
.thick-green-border {
border-width: 10px border-color: green border-style: solid;
}
.red-text {
color: red;
}
h2 {
font-family: Lobster, Monospace;
}
p {
font-size: 16px;
font-family: Monospace;
}
.smaller-image {
width: 100px;
}
<link href='http://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'>
<h2 class='red-text'>CatPhotoApp</h2>
<img class='smaller-image thick-green-border' src='https://bit.ly/fcc-kittens' />
You are missing a couple semi-colons:
Should be:
Modified Code: