Answers for "css font height"

CSS
0

how to change height font css

p {
  display: inline-block;
  font-size: 32px;
  transform: scale(.5, 1);
}
Posted by: Guest on April-18-2020
3

css line spacing

line-height: 1.5;  /* Prefered */

line-height: 1.5em;

line-height: 150%;

line-height: 24px;
Posted by: Guest on January-06-2021

Browse Popular Code Answers by Language