Quiz Question 1 of 5
Given the following function:
@function get-em($px, $base-font: 16px) {
@return ($px / $base-font) * 1em;
}
h1 {
font-size: get-em(72px);
}
What font-size
value will get-em()
return?
Choose the correct answer below: