When you export CSS properties from a Figma design, which of the following best describes what you get?
Think about what Figma provides when you inspect a single element's style.
Figma exports CSS as a snippet for the selected element's styles, not a full stylesheet or image.
You exported CSS from Figma and see this snippet:
color: #fff
font-size 16px;
background-color: #000;
What is the error in this CSS?
Check the syntax of each CSS property declaration carefully.
The font-size property is missing a colon between the property and value.
You have exported CSS properties from Figma for multiple elements. What is the best way to use these snippets in a web project?
Think about maintainability and reusability in CSS.
Combining snippets into a CSS file with classes allows reuse and easier maintenance.
You want to export colors from Figma as CSS variables for consistent theming. Which approach correctly models this?
Recall the correct syntax for CSS custom properties.
CSS variables are declared inside :root with double dashes and colon syntax.
You exported CSS properties from Figma for a desktop design. You want to create a responsive design for mobile. What is the best approach?
Think about how CSS handles different screen sizes effectively.
Media queries allow CSS to adapt styles based on screen size, enabling responsive design.