Question #71

Author: admin
tags: CSS  
<div class="text">
  text
</div>
.text {
  color: red;
}

@media screen and (max-width: 500px) {
  .text {
    color: green;
  }
}

@media (min-width: 501px) and (max-width: 900px) {
  .text {
    color: blue;
  }
}
What color will the text be in a normal browser if the width of the browser tab is 1000 pixels?
red
green
blue
black (default)
Rate the difficulty of the question:
easyhard