monks/text_emphasis

The text-emphasis CSS property applies emphasis marks to text (except spaces and control characters). It is a shorthand for {{cssxref(“text-emphasis-style”)}} and {{cssxref(“text-emphasis-color”)}}.

Values

pub const circle: #(String, String)
  • : Display large circles as marks. The filled circle is '●' (U+25CF), and the open circle is '○' (U+25CB). This is the default shape in horizontal writing modes when no other shape is given.
pub const dot: #(String, String)
  • : Display small circles as marks. The filled dot is '•' (U+2022), and the open dot is '◦' (U+25E6).
pub const double_circle: #(String, String)
  • : Display double circles as marks. The filled double-circle is '◉' (U+25C9), and the open double-circle is '◎' (U+25CE).
pub const filled: #(String, String)
  • : The shape is filled with solid color. If neither filled nor open is present, this is the default.
pub const inherit: #(String, String)
pub const initial: #(String, String)
pub const none: #(String, String)
  • : No emphasis marks.
pub const open: #(String, String)
  • : The shape is hollow.
pub fn raw(value: String) -> #(String, String)

Enter a raw string value for text-emphasis

pub const revert: #(String, String)
pub const revert_layer: #(String, String)
pub const sesame: #(String, String)
  • : Display sesames as marks. The filled sesame is '﹅' (U+FE45), and the open sesame is '﹆' (U+FE46). This is the default shape in vertical writing modes when no other shape is given.
pub const triangle: #(String, String)
  • : Display triangles as marks. The filled triangle is '▲' (U+25B2), and the open triangle is '△' (U+25B3).
pub const unset: #(String, String)
pub fn var(variable: String) -> #(String, String)

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

Search Document