pub type OverflowClipMargin = GenericOverflowClipMargin<NonNegativeLength>;Expand description
The specified value of overflow-clip-margin.
Aliased Type§
#[repr(C)]pub struct OverflowClipMargin {
pub offset: NonNegative<Length>,
pub visual_box: OverflowClipMarginBox,
}Fields§
§offset: NonNegative<Length>The offset of the clip.
visual_box: OverflowClipMarginBoxThe box that we’re clipping to.
Trait Implementations§
Source§impl Parse for OverflowClipMargin
impl Parse for OverflowClipMargin
Source§fn parse<'i>(
context: &ParserContext<'_>,
input: &mut Parser<'i, '_>,
) -> Result<Self, ParseError<'i>>
fn parse<'i>( context: &ParserContext<'_>, input: &mut Parser<'i, '_>, ) -> Result<Self, ParseError<'i>>
Parse a value of this type. Read more