<div id='one' class="one">1</div>
So the div above has a class and ID. I have added inline styling in the header section:
<style>#one {color: red;}</style>
In the style.css file I have the following code:
#one.one {color: blue;}
The colour of the text in the div is showing up as blue. Why is that? I was under the impression that inline styling has the highest specificity.