Question #3

Author: admin
tags: CSS  
<div class="div1">
  <div class="div2">
    <div class="div3">
      <div class="div4">
        <div class="div5">
          text
        </div>
      </div>
    </div>
  </div>
</div>
.div2 .div3 .div4 .div5 {
  color: green;
}

.div1 .div2 .div3 {
  color: blue;
}

.div1 .div5 {
  color: red;
}
What color will the text be?
green
blue
red
Rule .div2 .div3 .div4 .div5 has the greatest specificity.
Rate the difficulty of the question:
easyhard