monks/border_inline_style

The border-inline-style CSS property defines the style of the logical inline borders of an element, which maps to a physical border style depending on the element’s writing mode, directionality, and text orientation. It corresponds to the {{cssxref(“border-top-style”)}} and {{cssxref(“border-bottom-style”)}}, or {{cssxref(“border-left-style”)}} and {{cssxref(“border-right-style”)}} properties depending on the values defined for {{cssxref(“writing-mode”)}}, {{cssxref(“direction”)}}, and {{cssxref(“text-orientation”)}}.

The border style in the other dimension can be set with {{cssxref(“border-block-style”)}}, which sets {{cssxref(“border-block-start-style”)}}, and {{cssxref(“border-block-end-style”)}}.

Values

pub const dashed: #(String, String)

dashed value of border-inline-style

pub const dotted: #(String, String)

dotted value of border-inline-style

pub const double: #(String, String)

double value of border-inline-style

pub const groove: #(String, String)

groove value of border-inline-style

pub const hidden: #(String, String)

hidden value of border-inline-style

pub const inherit: #(String, String)
pub const initial: #(String, String)
pub const inset: #(String, String)

inset value of border-inline-style

pub const none: #(String, String)

none value of border-inline-style

pub const outset: #(String, String)

outset value of border-inline-style

pub fn raw(value: String) -> #(String, String)

Enter a raw string value for border-inline-style

pub const revert: #(String, String)
pub const revert_layer: #(String, String)
pub const ridge: #(String, String)

ridge value of border-inline-style

pub const solid: #(String, String)

solid value of border-inline-style

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

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

Search Document