I’ve been trying to pass the lesson Basic CSS: Add Borders Around Your Elements. I can only get one or the other class smaller-image or thick-green-border to apply. I used spaces between the two classes and switched from safari to chrome with no luck on getting both to apply.
my code is
.smaller-image {
width: 100px;
}
.thick-green-border {
border-color: green;
border-width: 10px;
border-style: solid;
}
.....
<a href="#"><img class="thick-green-border" "smaller-image" src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
what am I doing incorrectly ?