Answers for "linethrough thickness css"

CSS
2

how to change the underline thickness in css

text-decoration-thickness: 3px;
text-decoration-thickness: 5%;
Posted by: Guest on January-22-2021
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

Browse Popular Code Answers by Language