Question #199

Author: admin
tags: CSS   frontend (web)  
HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="main.css" rel="stylesheet" type="text/css">
<title>Title</title>
</head>

<body>
  <div class="my-block">
    Text
  </div>
</body>
</html>
main.css:
.my-block {
  color: green;
}

@import "./other.css";
other.css:
.my-block {
  color: red;
}
What is the font color of the my-block block?
green
red
black (or default color)
An @import rule must be defined at the top of the stylesheet, before any other at-rule (except @charset and @layer) and style declarations, or it will be ignored.
Rate the difficulty of the question:
easyhard