Question #103

Author: admin
tags: CSS  
<div class="outer">
  <div class="inner">
    Some text
  </div>
</div>
.outer {
  --text-size: 30px;
  font-size: 20px;
}

.inner {
  font-size: calc(10px + var(--text-size));
}
What is the font size of text inside the .inner block?
10px
20px
30px
40px
Browser default text size
Rate the difficulty of the question:
easyhard