Bird
Raised Fist0
Figmabi_tool~20 mins

Letter spacing and paragraph spacing in Figma - Practice Problems & Coding Challenges

Choose your learning style10 modes available

Start learning this pattern below

Jump into concepts and practice - no test required

or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Challenge - 5 Problems
🎖️
Master of Letter and Paragraph Spacing
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
Understanding Letter Spacing in Dashboard Text

In a BI dashboard, why is adjusting letter spacing important for text labels?

AIt improves readability by controlling space between characters.
BIt changes the font color automatically.
CIt adjusts the size of the text box container.
DIt adds bullet points to the text.
Attempts:
2 left
💡 Hint

Think about how letters appear close or far apart in a word.

🧠 Conceptual
intermediate
1:30remaining
Role of Paragraph Spacing in BI Reports

What is the main purpose of paragraph spacing in BI report text blocks?

ATo add space between separate paragraphs for clarity.
BTo add space between lines of text within a paragraph.
CTo change the font style of the paragraph.
DTo insert images between paragraphs.
Attempts:
2 left
💡 Hint

Consider how paragraphs are separated visually.

visualization
advanced
2:00remaining
Choosing Letter Spacing for Dashboard Titles

You have a dashboard title that looks crowded. Which letter spacing setting improves readability without wasting space?

ASet letter spacing to -0.05em to tighten letters.
BSet letter spacing to 0.5em to spread letters widely.
CSet letter spacing to 0em to keep default spacing.
DSet letter spacing to 0.1em to slightly space letters.
Attempts:
2 left
💡 Hint

Think about subtle spacing that improves clarity but keeps compactness.

🎯 Scenario
advanced
2:00remaining
Adjusting Paragraph Spacing for BI Report Sections

You notice that paragraphs in your BI report are too close, making it hard to separate ideas. What paragraph spacing value should you increase?

AIncrease space before paragraphs only.
BIncrease both space before and after paragraphs.
CIncrease space after paragraphs only.
DIncrease line height within paragraphs.
Attempts:
2 left
💡 Hint

Think about spacing that separates paragraphs clearly on both sides.

🔧 Formula Fix
expert
2:30remaining
Fixing Letter Spacing Issue in Figma Text Component

You set letter spacing to 20 in Figma but the text looks broken and letters are too far apart. What is the likely cause?

ALetter spacing value is too large and should be smaller or positive but less than 10.
BLetter spacing value is in pixels but Figma expects em units.
CLetter spacing value is too large and should be smaller or positive but less than 5.
DLetter spacing value is too large and should be smaller or negative.
Attempts:
2 left
💡 Hint

Consider typical letter spacing ranges in design tools.

Practice

(1/5)
1. What does letter spacing control in a text block?
easy
A. The space between individual letters
B. The space between words
C. The space between paragraphs
D. The font size of the text

Solution

  1. Step 1: Understand letter spacing meaning

    Letter spacing means adjusting the space between each letter in a word.
  2. Step 2: Differentiate from other spacing types

    Word spacing is space between words; paragraph spacing is space between paragraphs.
  3. Final Answer:

    The space between individual letters -> Option A
  4. Quick Check:

    Letter spacing = space between letters [OK]
Hint: Letter spacing = space between letters, not words or paragraphs [OK]
Common Mistakes:
  • Confusing letter spacing with word spacing
  • Thinking paragraph spacing affects letters
  • Mixing font size with spacing
2. Which CSS property correctly sets letter spacing to 2 pixels?
easy
A. paragraph-spacing: 2px;
B. letter-spacing: 2px;
C. spacing-letter: 2px;
D. text-spacing: 2px;

Solution

  1. Step 1: Identify correct CSS property for letter spacing

    The correct CSS property is letter-spacing.
  2. Step 2: Check syntax correctness

    Setting it as letter-spacing: 2px; is valid CSS syntax.
  3. Final Answer:

    letter-spacing: 2px; -> Option B
  4. Quick Check:

    Correct CSS property = letter-spacing [OK]
Hint: Remember CSS property is exactly 'letter-spacing' [OK]
Common Mistakes:
  • Using non-existent properties like paragraph-spacing
  • Swapping property names
  • Missing hyphen in property name
3. Given this CSS snippet:
p { letter-spacing: 3px; paragraph-spacing: 10px; }

What will happen when applied to paragraphs in a BI report?
medium
A. Letters will have 3px spacing; paragraph-spacing will be ignored as invalid
B. Both letter-spacing and paragraph-spacing will be ignored
C. Paragraphs will have 3px spacing; letters will have 10px spacing
D. Letters in paragraphs will be spaced out by 3px; paragraphs will have 10px space between them

Solution

  1. Step 1: Understand letter-spacing effect

    Letter-spacing: 3px will space letters by 3 pixels correctly.
  2. Step 2: Check validity of paragraph-spacing

    CSS does not have a paragraph-spacing property, so it will be ignored.
  3. Final Answer:

    Letters will have 3px spacing; paragraph-spacing will be ignored as invalid -> Option A
  4. Quick Check:

    Valid CSS property works; invalid ignored [OK]
Hint: Only valid CSS properties apply; invalid ones are ignored [OK]
Common Mistakes:
  • Assuming paragraph-spacing is valid CSS
  • Mixing letter and paragraph spacing values
  • Expecting both properties to work
4. You want to increase space between paragraphs in a BI report using Figma. Which approach fixes this incorrect CSS?
p { letter-spacing: 1px; paragraph-spacing: 15px; }
medium
A. Use padding-left: 15px; on paragraphs
B. Change letter-spacing to 15px
C. Add line-height: 15px; instead
D. Replace paragraph-spacing with margin-bottom: 15px;

Solution

  1. Step 1: Identify invalid property

    paragraph-spacing is not a valid CSS property.
  2. Step 2: Use correct CSS to add space between paragraphs

    Using margin-bottom: 15px; adds space below each paragraph, effectively spacing paragraphs.
  3. Final Answer:

    Replace paragraph-spacing with margin-bottom: 15px; -> Option D
  4. Quick Check:

    Margin controls spacing between blocks [OK]
Hint: Use margin-bottom to space paragraphs, not paragraph-spacing [OK]
Common Mistakes:
  • Using line-height to add paragraph spacing
  • Changing letter-spacing instead of paragraph spacing
  • Using padding-left which affects horizontal space
5. In a BI dashboard, you want text to be easy to read with balanced spacing. Which combination of settings is best?

letter-spacing: 0.05em;
margin-bottom: 1.5em;

Why is this better than letter-spacing: 0; and margin-bottom: 0.5em;?
hard
A. Letter spacing should be negative; margin-bottom should be zero
B. Zero letter spacing is clearer; smaller margin saves space
C. Slight letter spacing improves clarity; larger margin separates paragraphs clearly
D. Letter spacing and margin-bottom do not affect readability

Solution

  1. Step 1: Understand letter spacing impact

    Slight positive letter spacing (0.05em) helps letters not crowd each other, improving clarity.
  2. Step 2: Understand paragraph spacing impact

    Larger margin-bottom (1.5em) clearly separates paragraphs, making text easier to scan.
  3. Final Answer:

    Slight letter spacing improves clarity; larger margin separates paragraphs clearly -> Option C
  4. Quick Check:

    Balanced spacing = better readability [OK]
Hint: Small letter spacing + bigger paragraph margin = clearer text [OK]
Common Mistakes:
  • Thinking zero spacing is always best
  • Ignoring paragraph spacing importance
  • Using negative letter spacing which reduces clarity