docs.rodeo

MDN Web Docs mirror

{{CSSRef}} 

The <absolute-size> CSS data type describes the absolute size keywords. This data type is used in the {{cssxref("font")}}  shorthand and {{cssxref("font-size")}}  properties.

The font size keywords are mapped to the deprecated HTML size attribute. See the HTML size attribute section below).

Syntax

<absolute-size> = xx-small | x-small | small | medium | large | x-large | xx-large | xxx-large

Values

The <absolute-size> data type is defined using a keyword value chosen from the list below.

Description

Each <absolute-size> keyword value is sized relative to the medium size and the individual device’s characteristics, such as device resolution. User agents maintain a table of font sizes for each font, with the <absolute-size> keywords being the index.

In CSS1 (1996), the scaling factor between adjacent keyword value indexes was 1.5, which was too large. In CSS2 (1998), the scaling factor between adjacent keyword value indexes was 1.2, which created issues for the small values. As a single fixed ratio between adjacent absolute-size keywords was found to be problematic, there is no longer a fixed ratio recommendation. The only recommendation to preserve readability is that the smallest font size should not be less than 9px.

For each <absolute-size> keyword value, the following table lists the scaling factor, mapping to <h1> to <h6> headings, and mapping to the deprecated HTML size attribute.

<absolute-size> xx-small x-small small medium large x-large xx-large xxx-large
scaling factor 3/5 3/4 8/9 1 6/5 3/2 2/1 3/1
HTML headings h6 h5 h4 h3 h2 h1
HTML size attribute 1 2 3 4 5 6 7

HTML size attribute

The size attribute to set a font’s size in HTML is deprecated. The attribute value was either an integer between 1 and 7 or a relative value. Relative values were an integer preceded by + or - to increase or decrease the font size, respectively. A value of +1 meant increasing the size by one and -2 meant decreasing the size by two, with the computed value clamped at a minimum of 1 and a maximum computed value of 7.

Examples

Comparing the keyword values

<ul>
  <li class="xx-small">font-size: xx-small;</li>
  <li class="x-small">font-size: x-small;</li>
  <li class="small">font-size: small;</li>
  <li class="medium">font-size: medium;</li>
  <li class="large">font-size: large;</li>
  <li class="x-large">font-size: x-large;</li>
  <li class="xx-large">font-size: xx-large;</li>
  <li class="xxx-large">font-size: xxx-large;</li>
</ul>
li {
  margin-bottom: 0.3em;
}
.xx-small {
  font-size: xx-small;
}
.x-small {
  font-size: x-small;
}
.small {
  font-size: small;
}
.medium {
  font-size: medium;
}
.large {
  font-size: large;
}
.x-large {
  font-size: x-large;
}
.xx-large {
  font-size: xx-large;
}
.xxx-large {
  font-size: xxx-large;
}

Result

{{EmbedLiveSample('Comparing the keyword values', '100%', 400)}} 

Specifications

{{Specifications}} 

See also

In this article

View on MDN