monks/font_kerning

The font-kerning CSS property sets the use of the kerning information stored in a font.

Values

pub const auto_: #(String, String)
  • : The browser determines whether font kerning should be used or not. For example, some browsers will disable kerning on small fonts, since applying it could harm the readability of text.
pub const inherit: #(String, String)
pub const initial: #(String, String)
pub const none: #(String, String)
  • : Font kerning information stored in the font is disabled.
pub const normal: #(String, String)
  • : Font kerning information stored in the font must be applied.
pub fn raw(value: String) -> #(String, String)

Enter a raw string value for font-kerning

pub const revert: #(String, String)
pub const revert_layer: #(String, String)
pub const unset: #(String, String)
pub fn var(variable: String) -> #(String, String)

Enter a variable name to be used for font-kerning. It will be wrapped in var() and have -- prepended.

Search Document