0
0
Figmabi_tool~20 mins

Absolute positioning within Auto Layout in Figma - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Absolute Positioning Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Absolute Positioning in Auto Layout

In Figma, when you set a child element to absolute positioning inside an Auto Layout frame, what happens to that element?

AThe element remains in the Auto Layout flow but ignores padding settings.
BThe element is removed from the Auto Layout flow and positioned relative to the parent frame.
CThe element resizes automatically to fill the parent frame.
DThe element becomes fixed and cannot be moved inside the frame.
Attempts:
2 left
💡 Hint

Think about how absolute positioning works in CSS and how Figma mimics this behavior.

🎯 Scenario
intermediate
2:00remaining
Positioning an Icon Over Text in Auto Layout

You have a button with text inside an Auto Layout frame. You want to place an icon overlapping the top-right corner of the button using absolute positioning. Which step is not required?

AEnsure the icon is a child of the Auto Layout frame.
BAdjust the icon's X and Y coordinates relative to the parent frame.
CSet the icon's position to absolute inside the Auto Layout frame.
DChange the Auto Layout direction to vertical to allow overlapping.
Attempts:
2 left
💡 Hint

Does changing the Auto Layout direction affect absolute positioning?

🔧 Formula Fix
advanced
2:00remaining
Why Does the Absolutely Positioned Element Not Move?

You set a child element to absolute positioning inside an Auto Layout frame and try to move it by dragging, but it stays fixed in place. What is the most likely cause?

AThe Auto Layout frame is set to vertical direction.
BThe Auto Layout frame has padding set to zero.
CThe element has constraints set to fixed position relative to the parent edges.
DThe element is not a direct child of the Auto Layout frame.
Attempts:
2 left
💡 Hint

Check the constraints settings of the absolutely positioned element.

visualization
advanced
2:30remaining
Visualizing Absolute Positioning Effect

Given an Auto Layout frame with three child rectangles arranged horizontally, one rectangle is set to absolute positioning with top: 0 and right: 0. What will the final layout look like?

Figma
Auto Layout frame: horizontal direction, spacing 10px
Children: Rect1 (normal), Rect2 (absolute, top:0, right:0), Rect3 (normal)
ARect1 and Rect3 arranged horizontally with Rect2 overlapping the top-right corner of the frame.
BAll three rectangles arranged horizontally with equal spacing and no overlap.
CRect2 pushes Rect3 to the right, increasing the frame width.
DRect2 is hidden behind Rect1 and Rect3 because absolute positioning removes it from view.
Attempts:
2 left
💡 Hint

Remember that absolute positioned elements do not take space in Auto Layout flow.

data_modeling
expert
3:00remaining
Modeling Layer Hierarchy with Absolute Positioning

You are designing a complex UI in Figma using Auto Layout frames and absolute positioning. Which statement best describes how absolute positioning affects the layer hierarchy and rendering order?

AAbsolutely positioned elements remain in the layer order but render on top of Auto Layout siblings regardless of their position in the layers panel.
BAbsolutely positioned elements are removed from the layer hierarchy and cannot be reordered.
CAbsolutely positioned elements are rendered behind Auto Layout siblings to avoid overlap.
DAbsolutely positioned elements are grouped separately and do not affect rendering order.
Attempts:
2 left
💡 Hint

Consider how Figma handles z-index and layer order with absolute positioning.