css font width code example

Example 1: css bold text

.text {
	font-weight: bold;
}

Example 2: font size css

.class {
	font-size: 12px;
}

Example 3: how to change height font css

p {
  display: inline-block;
  font-size: 32px;
  transform: scale(.5, 1);
}

Example 4: css bold text

we can set text bold using css property named 'font-weight'
Syntax:
selector{
  font-weight: bold;
}

Example 5: font size css

/* you can set the font size using font-size: and a number followed by px */

.class {
  font-size: 60px;
}

Example 6: font size css

/* <absolute-size> values */
font-size: xx-small;
font-size: x-small;
font-size: small;
font-size: medium;
font-size: large;
font-size: x-large;
font-size: xx-large;
font-size: xxx-large;

/* <relative-size> values */
font-size: smaller;
font-size: larger;

/* <length> values */
font-size: 12px;
font-size: 0.8em;

/* <percentage> values */
font-size: 80%;

/* Global values */
font-size: inherit;
font-size: initial;
font-size: unset;

Tags: