monks/text_emphasis_style

The text-emphasis-style CSS property sets the appearance of emphasis marks. It can also be set, and reset, using the {{cssxref(“text-emphasis”)}} shorthand.

Values

pub const circle: #(String, String)
  • : Display large circles as marks. The filled circle is '●' (U+25CF), and the open circle is '○' (U+25CB).
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-style

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).
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-style. It will be wrapped in var() and have -- prepended.

Search Document