Answers for "font size unit css"

CSS
37

font size css

.class {
	font-size: 12px;
}
Posted by: Guest on February-15-2020
3

vh and vw

/*vh viewport height and vw viewport width*/
/*example*/
div
{
  display: inline-block;
  height: 100vh; /*THis will set height equal to the height of windows*/
  width: 100vw/*This will set width equal to width of windows*/
}
Posted by: Guest on September-02-2020
0

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;
Posted by: Guest on February-24-2021
0

font size css

font-size:16px;
Posted by: Guest on August-16-2021

Browse Popular Code Answers by Language