Skip to content

Files

Latest commit

 

History

History
40 lines (27 loc) · 688 Bytes

figma-line-height.md

File metadata and controls

40 lines (27 loc) · 688 Bytes
title version revision
Figma line-height
0.1.0
1

Figma line-height

figma api docs

figma line-height is separated into three parts: px, %, and auto. auto is the default set when the user does not set line-height.

auto

If it is auto, it is not specified because it is the default.

css

line-height

line-height

/* px */
line-height: 10px;
/* % */
line-height: 10%;

flutter

height

Text(
  'Hi!\nWe are Grida!',
  style: TextStyle(height: 1),
);