0
0
Figmabi_tool~20 mins

Font size and line height in Figma - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Font Size and Line Height Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding the relationship between font size and line height

In a dashboard design, why is it important to set the line height relative to the font size?

ATo make the font size smaller than the container width
BTo ensure text lines have enough space for readability without overlapping
CTo change the font color automatically based on size
DTo align text vertically in the middle of the page
Attempts:
2 left
💡 Hint

Think about how text looks when lines are too close or too far apart.

visualization
intermediate
2:00remaining
Choosing appropriate font size and line height for dashboard titles

You want to create a dashboard title that is clear and easy to read on all screen sizes. Which combination of font size and line height is best?

AFont size 24px with line height 28px
BFont size 24px with line height 18px
CFont size 12px with line height 24px
DFont size 36px with line height 12px
Attempts:
2 left
💡 Hint

Line height should be slightly larger than font size for clarity.

dax_lod_result
advanced
2:30remaining
Calculating dynamic line height in Power BI using DAX

You want to create a measure that sets line height dynamically based on font size in Power BI. Which DAX expression correctly calculates line height as 1.2 times the font size?

Figma
FontSize = 14
LineHeight = FontSize * 1.2
ALineHeight = [FontSize] * 1.2
BLineHeight = SUM([FontSize]) * 1.2
CLineHeight = [FontSize] / 1.2
DLineHeight = CALCULATE([FontSize] + 1.2)
Attempts:
2 left
💡 Hint

Think about simple multiplication of a measure.

🔧 Formula Fix
advanced
2:30remaining
Fixing inconsistent line height in a Figma text style

A text style in Figma has font size 16px but line height set to 12px, causing text lines to overlap. Which option correctly fixes this issue?

AChange font size to 20px and keep line height 12px
BDecrease font size to 10px
CSet line height to 0px
DIncrease line height to at least 19px
Attempts:
2 left
💡 Hint

Line height should be equal or greater than font size for readability.

🎯 Scenario
expert
3:00remaining
Designing responsive text for a BI dashboard

You need to design a BI dashboard text style that adjusts font size and line height for different screen sizes automatically. Which approach best achieves this?

AUse absolute units like pt for font size and fixed line height in px
BSet fixed pixel font size and line height for all screens
CUse relative units like rem for font size and set line height as a unitless multiplier
DManually create separate text styles for each screen size without relative units
Attempts:
2 left
💡 Hint

Think about how relative units help with scaling on different devices.