Most Developers Fail This Simple CSS 

The Test

Given the following HTML and CSS code, do you know what would be the color of the text ‘test’?

<body>
<div class="hello">
<p class="abc">test</p>
</div>
</body>
p.abc {
color: purple;
}
.hello p {
color: red;
}
.abc {
color: blue;
}
p {
color: green;
}

.hello.hello {
color: pink;
}