Here I have 8 CSS rules and I'd like to know their order of importance. I'm reading since a while on that but I can't figure out this precise example.
a > b + a, a > b {color: red;}
a > a, a + b {color: brown;}
c > b, c > a > b {color: yellow;}
a > c {color: green;}
c > a {color: green;}
Html Elements:
<a>
<b>Element 1</b>
<c>
<a>Element 2 </a>
<b>Element 3</b>
<a>
<a>Element 4</a>
<c>Element 5</c>
<b>Element 6</b>
<a>Element 7</a>
<a>Element 8</a>
</a>
</c>
<b>
<a>Element 9</a>
<b>Element 10</b>
</b>
</a>
What would the correct order for these rules?