Question #81

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

.text {
  font-size: 50px;
}

.text {
  text-decoration: underline;
}
What CSS rules will apply to the .text block?
only color
only text-decoration
color, font-size, and text-decoration
Rate the difficulty of the question:
easyhard