Question #83

Author: admin
tags: CSS  
<div class="text">
  text
</div>
.text {
  color: red;
  font-size: 50px;
}

.text {
  color: green;
  text-decoration: overline;
}

.text {
  font-size: 10px;
  text-decoration: underline;
}
What will the .text block look like?
Green color, 10px font size and underline decoration.
Green color, 50px font size and underline decoration.
Red color, 50px font size and no decoration.
Red color, 50px font size and overline decoration.
Black (default) color, 10px font size and underline decoration.
Rate the difficulty of the question:
easyhard