I have following html
code.
<h1 class="one">Hello</h1>
And following is the corresponding CSS
style sheet applied to it.
h1:hover {
color: red;
}
h1.one {
color: blue;
}
This causes h1
to turn blue, but the after hovering over the element, it doesn't change the color to red. What's wrong ?
Thanks