Answers for "font height css"

CSS
10

how bold text in css

p.normal {
  font-weight: normal;
}

p.thick {
  font-weight: bold;
}

p.thicker {
  font-weight: 900;
}
Posted by: Guest on November-18-2020
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

Browse Popular Code Answers by Language