Junior — Senior
Determining the text color inside a div element
livecode
Task condition
It is necessary to determine which color will be applied to the text inside the <div id="element" class="element"> tag, considering CSS specificity rules.
<html>
<head>
<style>
#element {
color: red;
}
.element {
color: blue;
}
div.element {
color: yellow;
}
div.element {
color: magenta;
}
</style>
</head>
<body>
<div id="element" class="element">
Some dummy text
</div>
</body>
</html>