Files
2018-11-17 20:20:03 -07:00

1000 B

title
title
Prioritize One Style Over Another

Prioritize One Style Over Another

We need to create a CSS class called pink-text that gives an our h1 element the color pink.

Solution

Between <style> and </style> create a class called pink-text:

  <style>
    body {
      background-color: black;
      font-family: monospace;
      color: green;
    }
    .pink-text {

    }
  </style>

And add in this class color with value of pink:

.pink-text {
  color: pink;
}

After, add this class to our h1 element:

<h1 class="pink-text">Hello World!</h1>

Full solution

<style>
  body {
    background-color: black;
    font-family: monospace;
    color: green;
  }
  .pink-text {
    color: pink;
  }
</style>
<h1 class="pink-text">Hello World!</h1>