Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mohamedkhallouq
GitHub Repository: mohamedkhallouq/content
Path: blob/main/files/en-us/web/css/@font-face/ascent-override/index.md
6546 views
---
title: ascent-override slug: Web/CSS/@font-face/ascent-override page-type: css-at-rule-descriptor browser-compat: css.at-rules.font-face.ascent-override
---

{{CSSRef}}

The ascent-override CSS descriptor defines the ascent metric for the font. The ascent metric is the height above the baseline that CSS uses to lay out line boxes in an inline formatting context.

Syntax

ascent-override: normal; ascent-override: 90%;

Values

  • normal

    • : The default value. When used the metric value is obtained from the font file.

  • <percentage>

    • : A {{cssxref("<percentage>")}} value.

Formal definition

{{cssinfo}}

Formal syntax

{{csssyntax}}

Examples

Overriding metrics of a fallback font

The ascent-override property can help when overriding the metrics of a fallback font to better match those of a primary web font.

@font-face { font-family: web-font; src: url("https://example.com/font.woff"); } @font-face { font-family: local-font; src: local(Local Font); ascent-override: 125%; }

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also

  • {{cssxref("@font-face/descent-override", "descent-override")}}

  • {{cssxref("@font-face/font-display", "font-display")}}

  • {{cssxref("@font-face/font-family", "font-family")}}

  • {{cssxref("@font-face/font-weight", "font-weight")}}

  • {{cssxref("@font-face/font-style", "font-style")}}

  • {{cssxref("@font-face/font-stretch", "font-stretch")}}

  • {{cssxref("font-feature-settings", "font-feature-settings")}}

  • {{cssxref("@font-face/font-variation-settings", "font-variation-settings")}}

  • {{cssxref("@font-face/line-gap-override", "line-gap-override")}}

  • {{cssxref("@font-face/src", "src")}}

  • {{cssxref("@font-face/size-adjust", "size-adjust")}}

  • {{cssxref("@font-face/unicode-range", "unicode-range descriptor")}}