✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Consider the following HTML and CSS code:
<html> <head> <style type="text/css"> body h3.heading { color : red; } body h3.heading { color : blue; } h3.heading { color : green; } </style> </head> <body> <h3 class="heading">My Heading</h3> </body></html>
Which of the following statements is true?