Quiz
Specificity Showdown Between Selectors
Determine which CSS rule wins when class, ID, and element selectors collide on the same element.
Given <button class="btn" id="submit"> and these rules in the same stylesheet: #submit { color: red; } .btn { color: blue; } button { color: green; } What color is the button text?