Answers for "best line height css"

CSS
8

line-height css

/* Keyword value */
line-height: normal;

/* Unitless values: use this number multiplied
by the element's font size */
line-height: 3.5;

/* <length> values */
line-height: 3em;

/* <percentage> values */
line-height: 34%;

/* Global values */
line-height: inherit;
line-height: initial;
line-height: unset;
Posted by: Guest on March-18-2020
0

css good line height

/* paragraphs */
line-height: 1.5;

/* headings */
line-height: 1.25;
Posted by: Guest on July-07-2021

Browse Popular Code Answers by Language