Sample Data
This data represents CSS properties and their values exported from a Figma design for a UI element.
| Cell | Value |
|---|---|
| A1 | Property |
| B1 | Value |
| A2 | color |
| B2 | #FF5733 |
| A3 | font-size |
| B3 | 16px |
| A4 | margin |
| B4 | 10px 20px |
| A5 | border-radius |
| B5 | 5px |
Jump into concepts and practice - no test required
This data represents CSS properties and their values exported from a Figma design for a UI element.
| Cell | Value |
|---|---|
| A1 | Property |
| B1 | Value |
| A2 | color |
| B2 | #FF5733 |
| A3 | font-size |
| B3 | 16px |
| A4 | margin |
| B4 | 10px 20px |
| A5 | border-radius |
| B5 | 5px |
CONCATENATE(A2, ": ", B2, "; ", A3, ": ", B3, "; ", A4, ": ", B4, "; ", A5, ": ", B5, ";")A B 1 Property Value 2 color #FF5733 3 font-size 16px 4 margin 10px 20px 5 border-radius 5px Arrows: A2->formula, B2->formula, A3->formula, B3->formula, A4->formula, B4->formula, A5->formula, B5->formula
A B 1 Property Value 2 color #FF5733 3 font-size 16px 4 margin 10px 20px 5 border-radius 5px 6 CSS Export: color: #FF5733; font-size: 16px; margin: 10px 20px; border-radius: 5px;
color followed by a colon and the color value ending with a semicolon.color: #FF5733;. Others use invalid syntax or property names.font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 16px; line-height: 24px;
font-weight: 700; which means bold weight.font-size: 16px; meaning the text size is 16 pixels.background-color #00FF00;
background-color, which is required in CSS.background-color: #00FF00;.box-shadow. For text shadows, it uses text-shadow.box-shadow with offset and color values.