El siguiente es el código con los estilos que utilicé
<!doctype html>
<html>
<head>
<meta charset="utf 8">
<title>Herencia</title>
<style type="text/css">
#caja header h1 { color: green } /* Prioridad: 0102 (estilo en id, y en 2 elemento) */
#caja .cabecera h1 { color: yellow} /* Prioridad: 0111 (estilo en id, clase, elemento) */
header h1 { color: pink} /* Prioridad: 0020 (estilo en 2 elementos) */
h1 { color: red } /* Prioridad: 0001 (estilo en 1 elemento) */
</style>
</head>
<body>
<div id="caja">
<header class="cabecera">
<h1 STYLE="color:blue">Cabecera: header</h1> <!-- Prioridad: 1000 (estilo en línea) -->
</header>
</div>
</body>
</html>