Hey all!
My browser is set to 100% and I’ve tripled-checked my code (I looked at all the other answers to this question as well). I’m using Chrome. Any other thoughts? Anything else I missed?
Here is my code:
Thanks!
Hey all!
My browser is set to 100% and I’ve tripled-checked my code (I looked at all the other answers to this question as well). I’m using Chrome. Any other thoughts? Anything else I missed?
Here is my code:
Thanks!
Hello @BeckahJon and welcome to the forum.
I can see you created the class in the style
section, but you never applied it to the desired element.
Remember that you have to tell the browser where to apply the style as well
For reference you can see how you applied the red-text
class to your p
// style declaration
.red-text {
color: red;
}
// styled applied
<p class="red-text">...</p>
The logic is the same, even if it’s an image
this time.
Hope this helps
Ah yes! This makes perfect sense, thank you!