What color will paragraphs turn when the mouse hovers over them in the following code?
<p class="hoverable">Hover over here</p>
.hoverable:hover {
color: #FFFF00;
}
What color will paragraphs turn when the mouse hovers over them in the following code?
<p class="hoverable">Hover over here</p>
.hoverable:hover {
color: #FFFF00;
}