--- title: Prioritize One Style Over Another --- # Prioritize One Style Over Another --- ## Problem Explanation We need to create a CSS class called ```pink-text``` that gives an our ```h1``` element the color pink. --- ## Solutions
Solution 1 (Click to Show/Hide) Between `````` create a class called ```pink-text```: ```css ``` And add in this class ```color``` with value of ```pink```: ```css .pink-text { color: pink; } ``` After, add this class to our ```h1``` element: ```css

Hello World!

``` **Full solution** ```css

Hello World!

```