Cant get past this

Tell us what’s happening:
I do not understand when I run the test it keeps telling me this

// running test
your h1 element should be pink
// test complete

I have checked it and it is exactly like the video and I won’t get credit for it. Can you help me?

  **Your code so far**

<style>
body {
  background-color: black;
  font-family: monospace;
  color: green;
}
#orange-text {
  color: orange;
}
.pink-text {
  color: pink; !important;
}
.blue-text {
  color: blue;
}
</style>
<h1 id="orange-text" class="pink-text blue-text" style="color: white">Hello World!</h1>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36.

Challenge: Override All Other Styles by using Important

Link to the challenge:

Please check your syntax. It should be color: pink !important;
Don’t write anything after ; in CSS

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.