Button

Struct Button 

Source
pub struct Button { /* private fields */ }
Expand description

A Button element.

Implementations§

Source§

impl Button

Source

pub fn new(id: impl Into<ElementId>) -> Self

Source

pub fn outline(self) -> Self

Set the outline style of the Button.

Source

pub fn rounded(self, rounded: impl Into<ButtonRounded>) -> Self

Set the border radius of the Button.

Source

pub fn label(self, label: impl Into<SharedString>) -> Self

Set label to the Button, if no label is set, the button will be in Icon Button mode.

Source

pub fn icon(self, icon: impl Into<Icon>) -> Self

Set the icon of the button, if the Button have no label, the button well in Icon Button mode.

Source

pub fn tooltip(self, tooltip: impl Into<SharedString>) -> Self

Set the tooltip of the button.

Source

pub fn tooltip_with_action( self, tooltip: impl Into<SharedString>, action: &dyn Action, context: Option<&str>, ) -> Self

Source

pub fn loading(self, loading: bool) -> Self

Set true to show the loading indicator.

Source

pub fn compact(self) -> Self

Set the button to compact mode, then padding will be reduced.

Source

pub fn on_click( self, handler: impl Fn(&ClickEvent, &mut Window, &mut App) + 'static, ) -> Self

Source

pub fn stop_propagation(self, val: bool) -> Self

Source

pub fn loading_icon(self, icon: impl Into<Icon>) -> Self

Source

pub fn tab_index(self, tab_index: isize) -> Self

Set the tab index of the button, it will be used to focus the button by tab key.

Default is 0.

Source

pub fn tab_stop(self, tab_stop: bool) -> Self

Set the tab stop of the button, if true, the button will be focusable by tab key.

Default is true.

Trait Implementations§

Source§

impl ButtonVariants for Button

Source§

fn with_variant(self, variant: ButtonVariant) -> Self

Source§

fn primary(self) -> Self

With the primary style for the Button.
Source§

fn danger(self) -> Self

With the danger style for the Button.
Source§

fn warning(self) -> Self

With the warning style for the Button.
Source§

fn success(self) -> Self

With the success style for the Button.
Source§

fn info(self) -> Self

With the info style for the Button.
Source§

fn ghost(self) -> Self

With the ghost style for the Button.
With the link style for the Button.
Source§

fn text(self) -> Self

With the text style for the Button, it will no padding look like a normal text.
Source§

fn custom(self, style: ButtonCustomVariant) -> Self

With the custom style for the Button.
Source§

impl Disableable for Button

Source§

fn disabled(self, disabled: bool) -> Self

Set the disabled state of the element.
Source§

impl From<Button> for AnyElement

Source§

fn from(button: Button) -> Self

Converts to this type from the input type.
Source§

impl InteractiveElement for Button

Source§

fn interactivity(&mut self) -> &mut Interactivity

Retrieve the interactivity state associated with this element
Source§

fn group(self, group: impl Into<SharedString>) -> Self

Assign this element to a group of elements that can be styled together
Source§

fn id(self, id: impl Into<ElementId>) -> Stateful<Self>

Assign this element an ID, so that it can be used with interactivity
Source§

fn track_focus(self, focus_handle: &FocusHandle) -> Self

Track the focus state of the given focus handle on this element. If the focus handle is focused by the application, this element will apply its focused styles.
Source§

fn tab_stop(self, tab_stop: bool) -> Self

Set whether this element is a tab stop. Read more
Source§

fn tab_index(self, index: isize) -> Self

Set index of the tab stop order, and set this node as a tab stop. This will default the element to being a tab stop. See Self::tab_stop for more information. This should only be used in conjunction with tab_group in order to not interfere with the tab index of other elements.
Source§

fn tab_group(self) -> Self

Designate this div as a “tab group”. Tab groups have their own location in the tab-index order, but for children of the tab group, the tab index is reset to 0. This can be useful for swapping the order of tab stops within the group, without having to renumber all the tab stops in the whole application.
Source§

fn key_context<C, E>(self, key_context: C) -> Self
where C: TryInto<KeyContext, Error = E>, E: Debug,

Set the keymap context for this element. This will be used to determine which action to dispatch from the keymap.
Source§

fn hover(self, f: impl FnOnce(StyleRefinement) -> StyleRefinement) -> Self

Apply the given style to this element when the mouse hovers over it
Source§

fn group_hover( self, group_name: impl Into<SharedString>, f: impl FnOnce(StyleRefinement) -> StyleRefinement, ) -> Self

Apply the given style to this element when the mouse hovers over a group member
Source§

fn on_mouse_down( self, button: MouseButton, listener: impl Fn(&MouseDownEvent, &mut Window, &mut App) + 'static, ) -> Self

Bind the given callback to the mouse down event for the given mouse button, the fluent API equivalent to Interactivity::on_mouse_down Read more
Source§

fn debug_selector(self, _: impl FnOnce() -> String) -> Self

Set a key that can be used to look up this element’s bounds in the [crate::VisualTestContext::debug_bounds] map This is a noop in release builds
Source§

fn capture_any_mouse_down( self, listener: impl Fn(&MouseDownEvent, &mut Window, &mut App) + 'static, ) -> Self

Bind the given callback to the mouse down event for any button, during the capture phase the fluent API equivalent to Interactivity::capture_any_mouse_down Read more
Source§

fn on_any_mouse_down( self, listener: impl Fn(&MouseDownEvent, &mut Window, &mut App) + 'static, ) -> Self

Bind the given callback to the mouse down event for any button, during the capture phase the fluent API equivalent to Interactivity::on_any_mouse_down Read more
Source§

fn on_mouse_up( self, button: MouseButton, listener: impl Fn(&MouseUpEvent, &mut Window, &mut App) + 'static, ) -> Self

Bind the given callback to the mouse up event for the given button, during the bubble phase the fluent API equivalent to Interactivity::on_mouse_up Read more
Source§

fn capture_any_mouse_up( self, listener: impl Fn(&MouseUpEvent, &mut Window, &mut App) + 'static, ) -> Self

Bind the given callback to the mouse up event for any button, during the capture phase the fluent API equivalent to Interactivity::capture_any_mouse_up Read more
Source§

fn on_mouse_down_out( self, listener: impl Fn(&MouseDownEvent, &mut Window, &mut App) + 'static, ) -> Self

Bind the given callback to the mouse down event, on any button, during the capture phase, when the mouse is outside of the bounds of this element. The fluent API equivalent to Interactivity::on_mouse_down_out Read more
Source§

fn on_mouse_up_out( self, button: MouseButton, listener: impl Fn(&MouseUpEvent, &mut Window, &mut App) + 'static, ) -> Self

Bind the given callback to the mouse up event, for the given button, during the capture phase, when the mouse is outside of the bounds of this element. The fluent API equivalent to Interactivity::on_mouse_up_out Read more
Source§

fn on_mouse_move( self, listener: impl Fn(&MouseMoveEvent, &mut Window, &mut App) + 'static, ) -> Self

Bind the given callback to the mouse move event, during the bubble phase The fluent API equivalent to Interactivity::on_mouse_move Read more
Source§

fn on_drag_move<T>( self, listener: impl Fn(&DragMoveEvent<T>, &mut Window, &mut App) + 'static, ) -> Self
where T: 'static,

Bind the given callback to the mouse drag event of the given type. Note that this will be called for all move events, inside or outside of this element, as long as the drag was started with this element under the mouse. Useful for implementing draggable UIs that don’t conform to a drag and drop style interaction, like resizing. The fluent API equivalent to Interactivity::on_drag_move Read more
Source§

fn on_scroll_wheel( self, listener: impl Fn(&ScrollWheelEvent, &mut Window, &mut App) + 'static, ) -> Self

Bind the given callback to scroll wheel events during the bubble phase The fluent API equivalent to Interactivity::on_scroll_wheel Read more
Source§

fn capture_action<A>( self, listener: impl Fn(&A, &mut Window, &mut App) + 'static, ) -> Self
where A: Action,

Capture the given action, before normal action dispatch can fire The fluent API equivalent to Interactivity::on_scroll_wheel Read more
Source§

fn on_action<A>( self, listener: impl Fn(&A, &mut Window, &mut App) + 'static, ) -> Self
where A: Action,

Bind the given callback to an action dispatch during the bubble phase The fluent API equivalent to Interactivity::on_action Read more
Source§

fn on_boxed_action( self, action: &(dyn Action + 'static), listener: impl Fn(&(dyn Action + 'static), &mut Window, &mut App) + 'static, ) -> Self

Bind the given callback to an action dispatch, based on a dynamic action parameter instead of a type parameter. Useful for component libraries that want to expose action bindings to their users. The fluent API equivalent to Interactivity::on_boxed_action Read more
Source§

fn on_key_down( self, listener: impl Fn(&KeyDownEvent, &mut Window, &mut App) + 'static, ) -> Self

Bind the given callback to key down events during the bubble phase The fluent API equivalent to Interactivity::on_key_down Read more
Source§

fn capture_key_down( self, listener: impl Fn(&KeyDownEvent, &mut Window, &mut App) + 'static, ) -> Self

Bind the given callback to key down events during the capture phase The fluent API equivalent to Interactivity::capture_key_down Read more
Source§

fn on_key_up( self, listener: impl Fn(&KeyUpEvent, &mut Window, &mut App) + 'static, ) -> Self

Bind the given callback to key up events during the bubble phase The fluent API equivalent to Interactivity::on_key_up Read more
Source§

fn capture_key_up( self, listener: impl Fn(&KeyUpEvent, &mut Window, &mut App) + 'static, ) -> Self

Bind the given callback to key up events during the capture phase The fluent API equivalent to Interactivity::capture_key_up Read more
Source§

fn on_modifiers_changed( self, listener: impl Fn(&ModifiersChangedEvent, &mut Window, &mut App) + 'static, ) -> Self

Bind the given callback to modifiers changing events. The fluent API equivalent to Interactivity::on_modifiers_changed Read more
Source§

fn drag_over<S>( self, f: impl Fn(StyleRefinement, &S, &mut Window, &mut App) -> StyleRefinement + 'static, ) -> Self
where S: 'static,

Apply the given style when the given data type is dragged over this element
Source§

fn group_drag_over<S>( self, group_name: impl Into<SharedString>, f: impl FnOnce(StyleRefinement) -> StyleRefinement, ) -> Self
where S: 'static,

Apply the given style when the given data type is dragged over this element’s group
Source§

fn on_drop<T>( self, listener: impl Fn(&T, &mut Window, &mut App) + 'static, ) -> Self
where T: 'static,

Bind the given callback to drop events of the given type, whether or not the drag started on this element The fluent API equivalent to Interactivity::on_drop Read more
Source§

fn can_drop( self, predicate: impl Fn(&(dyn Any + 'static), &mut Window, &mut App) -> bool + 'static, ) -> Self

Use the given predicate to determine whether or not a drop event should be dispatched to this element The fluent API equivalent to Interactivity::can_drop
Source§

fn occlude(self) -> Self

Block the mouse from all interactions with elements behind this element’s hitbox. Typically block_mouse_except_scroll should be preferred. The fluent API equivalent to Interactivity::occlude_mouse
Source§

fn window_control_area(self, area: WindowControlArea) -> Self

Set the bounds of this element as a window control area for the platform window. The fluent API equivalent to Interactivity::window_control_area
Source§

fn block_mouse_except_scroll(self) -> Self

Block non-scroll mouse interactions with elements behind this element’s hitbox. See Hitbox::is_hovered for details. Read more
Source§

fn focus(self, f: impl FnOnce(StyleRefinement) -> StyleRefinement) -> Self
where Self: Sized,

Set the given styles to be applied when this element, specifically, is focused. Requires that the element is focusable. Elements can be made focusable using InteractiveElement::track_focus.
Source§

fn in_focus(self, f: impl FnOnce(StyleRefinement) -> StyleRefinement) -> Self
where Self: Sized,

Set the given styles to be applied when this element is inside another element that is focused. Requires that the element is focusable. Elements can be made focusable using InteractiveElement::track_focus.
Source§

impl IntoElement for Button

Source§

type Element = Component<Button>

The specific type of element into which the implementing type is converted. Useful for converting other types into elements automatically, like Strings
Source§

fn into_element(self) -> Self::Element

Convert self into a type that implements Element.
Source§

fn into_any_element(self) -> AnyElement

Convert self into a dynamically-typed AnyElement.
Source§

impl ParentElement for Button

Source§

fn extend(&mut self, elements: impl IntoIterator<Item = AnyElement>)

Extend this element’s children with the given child elements.
Source§

fn child(self, child: impl IntoElement) -> Self
where Self: Sized,

Add a single child element to this element.
Source§

fn children(self, children: impl IntoIterator<Item = impl IntoElement>) -> Self
where Self: Sized,

Add multiple child elements to this element.
Source§

impl PopupMenuExt for Button

Source§

fn popup_menu( self, f: impl Fn(PopupMenu, &mut Window, &mut Context<'_, PopupMenu>) -> PopupMenu + 'static, ) -> Popover<PopupMenu>

Create a popup menu with the given items, anchored to the TopLeft corner
Source§

fn popup_menu_with_anchor( self, anchor: impl Into<Corner>, f: impl Fn(PopupMenu, &mut Window, &mut Context<'_, PopupMenu>) -> PopupMenu + 'static, ) -> Popover<PopupMenu>

Create a popup menu with the given items, anchored to the given corner
Source§

impl RenderOnce for Button

Source§

fn render(self, window: &mut Window, cx: &mut App) -> impl IntoElement

Render this component into an element tree. Note that this method takes ownership of self, as compared to Render::render() method which takes a mutable reference.
Source§

impl Selectable for Button

Source§

fn selected(self, selected: bool) -> Self

Set the selected state of the element.
Source§

fn is_selected(&self) -> bool

Returns true if the element is selected.
Source§

fn secondary_selected(self, _: bool) -> Self

Set is the element mouse right clicked, default do nothing.
Source§

impl Sizable for Button

Source§

fn with_size(self, size: impl Into<Size>) -> Self

Set the ui::Size of this element. Read more
Source§

fn xsmall(self) -> Self

Set to Size::XSmall
Source§

fn small(self) -> Self

Set to Size::Small
Source§

fn large(self) -> Self

Set to Size::Large
Source§

impl Styled for Button

Source§

fn style(&mut self) -> &mut StyleRefinement

Returns a reference to the style memory of this element.
Source§

fn w(self, length: impl Clone + Into<Length>) -> Self

Sets the width of the element. Docs
Source§

fn w_0(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_0(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_0p5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_0p5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_1(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_1(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_1p5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_1p5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_2(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_2(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_2p5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_2p5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_3(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_3(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_3p5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_3p5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_4(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_4(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_6(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_6(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_7(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_7(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_8(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_8(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_9(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_9(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_10(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_10(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_11(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_11(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_12(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_12(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_16(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_16(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_20(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_20(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_24(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_24(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_32(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_32(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_40(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_40(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_48(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_48(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_56(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_56(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_64(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_64(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_72(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_72(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_80(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_80(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_96(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_96(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_112(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_112(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_128(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_128(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_auto(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_px(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_px(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_full(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_full(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_1_2(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_1_2(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_1_3(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_1_3(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_2_3(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_2_3(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_1_4(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_1_4(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_2_4(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_2_4(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_3_4(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_3_4(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_1_5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_1_5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_2_5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_2_5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_3_5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_3_5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_4_5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_4_5(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_1_6(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_1_6(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_5_6(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_5_6(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_1_12(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn w_neg_1_12(self) -> Self

Sets the width of the element. Docs Read more
Source§

fn h(self, length: impl Clone + Into<Length>) -> Self

Sets the height of the element. Docs
Source§

fn h_0(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_0(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_0p5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_0p5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_1(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_1(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_1p5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_1p5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_2(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_2(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_2p5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_2p5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_3(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_3(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_3p5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_3p5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_4(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_4(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_6(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_6(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_7(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_7(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_8(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_8(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_9(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_9(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_10(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_10(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_11(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_11(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_12(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_12(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_16(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_16(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_20(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_20(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_24(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_24(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_32(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_32(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_40(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_40(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_48(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_48(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_56(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_56(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_64(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_64(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_72(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_72(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_80(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_80(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_96(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_96(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_112(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_112(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_128(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_128(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_auto(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_px(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_px(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_full(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_full(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_1_2(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_1_2(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_1_3(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_1_3(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_2_3(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_2_3(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_1_4(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_1_4(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_2_4(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_2_4(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_3_4(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_3_4(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_1_5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_1_5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_2_5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_2_5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_3_5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_3_5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_4_5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_4_5(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_1_6(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_1_6(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_5_6(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_5_6(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_1_12(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn h_neg_1_12(self) -> Self

Sets the height of the element. Docs Read more
Source§

fn size(self, length: impl Clone + Into<Length>) -> Self

Sets the width and height of the element.
Source§

fn size_0(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_0(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_0p5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_0p5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_1(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_1(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_1p5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_1p5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_2(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_2(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_2p5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_2p5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_3(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_3(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_3p5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_3p5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_4(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_4(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_6(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_6(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_7(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_7(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_8(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_8(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_9(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_9(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_10(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_10(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_11(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_11(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_12(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_12(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_16(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_16(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_20(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_20(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_24(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_24(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_32(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_32(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_40(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_40(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_48(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_48(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_56(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_56(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_64(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_64(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_72(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_72(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_80(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_80(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_96(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_96(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_112(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_112(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_128(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_128(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_auto(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_px(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_px(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_full(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_full(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_1_2(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_1_2(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_1_3(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_1_3(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_2_3(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_2_3(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_1_4(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_1_4(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_2_4(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_2_4(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_3_4(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_3_4(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_1_5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_1_5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_2_5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_2_5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_3_5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_3_5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_4_5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_4_5(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_1_6(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_1_6(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_5_6(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_5_6(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_1_12(self) -> Self

Sets the width and height of the element. Read more
Source§

fn size_neg_1_12(self) -> Self

Sets the width and height of the element. Read more
Source§

fn min_w(self, length: impl Clone + Into<Length>) -> Self

Sets the minimum width of the element. Docs
Source§

fn min_w_0(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_0(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_0p5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_0p5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_1(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_1(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_1p5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_1p5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_2(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_2(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_2p5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_2p5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_3(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_3(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_3p5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_3p5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_4(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_4(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_6(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_6(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_7(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_7(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_8(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_8(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_9(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_9(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_10(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_10(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_11(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_11(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_12(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_12(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_16(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_16(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_20(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_20(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_24(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_24(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_32(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_32(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_40(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_40(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_48(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_48(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_56(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_56(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_64(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_64(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_72(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_72(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_80(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_80(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_96(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_96(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_112(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_112(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_128(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_128(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_auto(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_px(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_px(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_full(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_full(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_1_2(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_1_2(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_1_3(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_1_3(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_2_3(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_2_3(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_1_4(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_1_4(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_2_4(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_2_4(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_3_4(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_3_4(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_1_5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_1_5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_2_5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_2_5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_3_5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_3_5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_4_5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_4_5(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_1_6(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_1_6(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_5_6(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_5_6(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_1_12(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_w_neg_1_12(self) -> Self

Sets the minimum width of the element. Docs Read more
Source§

fn min_h(self, length: impl Clone + Into<Length>) -> Self

Sets the minimum height of the element. Docs
Source§

fn min_h_0(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_0(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_0p5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_0p5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_1(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_1(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_1p5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_1p5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_2(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_2(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_2p5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_2p5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_3(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_3(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_3p5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_3p5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_4(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_4(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_6(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_6(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_7(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_7(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_8(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_8(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_9(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_9(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_10(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_10(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_11(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_11(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_12(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_12(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_16(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_16(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_20(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_20(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_24(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_24(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_32(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_32(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_40(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_40(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_48(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_48(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_56(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_56(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_64(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_64(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_72(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_72(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_80(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_80(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_96(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_96(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_112(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_112(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_128(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_128(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_auto(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_px(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_px(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_full(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_full(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_1_2(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_1_2(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_1_3(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_1_3(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_2_3(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_2_3(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_1_4(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_1_4(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_2_4(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_2_4(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_3_4(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_3_4(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_1_5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_1_5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_2_5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_2_5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_3_5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_3_5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_4_5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_4_5(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_1_6(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_1_6(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_5_6(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_5_6(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_1_12(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn min_h_neg_1_12(self) -> Self

Sets the minimum height of the element. Docs Read more
Source§

fn max_w(self, length: impl Clone + Into<Length>) -> Self

Sets the maximum width of the element. Docs
Source§

fn max_w_0(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_0(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_0p5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_0p5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_1(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_1(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_1p5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_1p5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_2(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_2(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_2p5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_2p5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_3(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_3(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_3p5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_3p5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_4(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_4(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_6(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_6(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_7(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_7(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_8(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_8(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_9(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_9(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_10(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_10(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_11(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_11(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_12(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_12(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_16(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_16(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_20(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_20(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_24(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_24(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_32(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_32(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_40(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_40(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_48(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_48(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_56(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_56(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_64(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_64(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_72(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_72(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_80(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_80(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_96(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_96(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_112(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_112(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_128(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_128(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_auto(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_px(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_px(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_full(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_full(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_1_2(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_1_2(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_1_3(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_1_3(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_2_3(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_2_3(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_1_4(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_1_4(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_2_4(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_2_4(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_3_4(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_3_4(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_1_5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_1_5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_2_5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_2_5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_3_5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_3_5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_4_5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_4_5(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_1_6(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_1_6(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_5_6(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_5_6(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_1_12(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_w_neg_1_12(self) -> Self

Sets the maximum width of the element. Docs Read more
Source§

fn max_h(self, length: impl Clone + Into<Length>) -> Self

Sets the maximum height of the element. Docs
Source§

fn max_h_0(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_0(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_0p5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_0p5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_1(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_1(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_1p5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_1p5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_2(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_2(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_2p5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_2p5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_3(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_3(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_3p5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_3p5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_4(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_4(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_6(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_6(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_7(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_7(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_8(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_8(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_9(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_9(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_10(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_10(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_11(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_11(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_12(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_12(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_16(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_16(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_20(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_20(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_24(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_24(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_32(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_32(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_40(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_40(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_48(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_48(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_56(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_56(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_64(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_64(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_72(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_72(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_80(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_80(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_96(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_96(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_112(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_112(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_128(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_128(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_auto(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_px(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_px(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_full(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_full(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_1_2(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_1_2(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_1_3(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_1_3(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_2_3(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_2_3(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_1_4(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_1_4(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_2_4(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_2_4(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_3_4(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_3_4(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_1_5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_1_5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_2_5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_2_5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_3_5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_3_5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_4_5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_4_5(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_1_6(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_1_6(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_5_6(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_5_6(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_1_12(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn max_h_neg_1_12(self) -> Self

Sets the maximum height of the element. Docs Read more
Source§

fn gap(self, length: impl Clone + Into<DefiniteLength>) -> Self

Sets the gap between rows and columns in flex layouts. Docs
Source§

fn gap_0(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_0(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_0p5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_0p5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_1(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_1(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_1p5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_1p5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_2(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_2(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_2p5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_2p5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_3(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_3(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_3p5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_3p5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_4(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_4(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_6(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_6(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_7(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_7(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_8(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_8(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_9(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_9(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_10(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_10(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_11(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_11(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_12(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_12(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_16(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_16(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_20(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_20(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_24(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_24(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_32(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_32(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_40(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_40(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_48(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_48(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_56(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_56(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_64(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_64(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_72(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_72(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_80(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_80(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_96(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_96(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_112(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_112(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_128(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_128(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_px(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_px(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_full(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_full(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_1_2(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_1_2(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_1_3(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_1_3(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_2_3(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_2_3(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_1_4(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_1_4(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_2_4(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_2_4(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_3_4(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_3_4(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_1_5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_1_5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_2_5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_2_5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_3_5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_3_5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_4_5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_4_5(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_1_6(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_1_6(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_5_6(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_5_6(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_1_12(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_neg_1_12(self) -> Self

Sets the gap between rows and columns in flex layouts. Docs Read more
Source§

fn gap_x(self, length: impl Clone + Into<DefiniteLength>) -> Self

Sets the gap between columns in flex layouts. Docs
Source§

fn gap_x_0(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_0(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_0p5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_0p5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_1(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_1(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_1p5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_1p5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_2(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_2(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_2p5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_2p5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_3(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_3(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_3p5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_3p5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_4(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_4(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_6(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_6(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_7(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_7(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_8(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_8(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_9(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_9(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_10(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_10(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_11(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_11(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_12(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_12(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_16(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_16(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_20(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_20(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_24(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_24(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_32(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_32(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_40(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_40(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_48(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_48(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_56(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_56(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_64(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_64(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_72(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_72(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_80(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_80(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_96(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_96(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_112(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_112(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_128(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_128(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_px(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_px(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_full(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_full(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_1_2(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_1_2(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_1_3(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_1_3(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_2_3(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_2_3(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_1_4(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_1_4(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_2_4(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_2_4(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_3_4(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_3_4(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_1_5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_1_5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_2_5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_2_5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_3_5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_3_5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_4_5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_4_5(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_1_6(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_1_6(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_5_6(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_5_6(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_1_12(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_x_neg_1_12(self) -> Self

Sets the gap between columns in flex layouts. Docs Read more
Source§

fn gap_y(self, length: impl Clone + Into<DefiniteLength>) -> Self

Sets the gap between rows in flex layouts. Docs
Source§

fn gap_y_0(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_0(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_0p5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_0p5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_1(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_1(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_1p5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_1p5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_2(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_2(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_2p5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_2p5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_3(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_3(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_3p5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_3p5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_4(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_4(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_6(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_6(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_7(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_7(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_8(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_8(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_9(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_9(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_10(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_10(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_11(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_11(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_12(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_12(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_16(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_16(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_20(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_20(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_24(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_24(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_32(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_32(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_40(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_40(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_48(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_48(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_56(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_56(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_64(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_64(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_72(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_72(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_80(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_80(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_96(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_96(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_112(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_112(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_128(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_128(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_px(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_px(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_full(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_full(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_1_2(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_1_2(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_1_3(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_1_3(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_2_3(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_2_3(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_1_4(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_1_4(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_2_4(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_2_4(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_3_4(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_3_4(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_1_5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_1_5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_2_5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_2_5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_3_5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_3_5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_4_5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_4_5(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_1_6(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_1_6(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_5_6(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_5_6(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_1_12(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn gap_y_neg_1_12(self) -> Self

Sets the gap between rows in flex layouts. Docs Read more
Source§

fn rounded(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border radius of the element. Docs
Source§

fn rounded_none(self) -> Self

Sets the border radius of the element. Docs Read more
Source§

fn rounded_xs(self) -> Self

Sets the border radius of the element. Docs Read more
Source§

fn rounded_sm(self) -> Self

Sets the border radius of the element. Docs Read more
Source§

fn rounded_md(self) -> Self

Sets the border radius of the element. Docs Read more
Source§

fn rounded_lg(self) -> Self

Sets the border radius of the element. Docs Read more
Source§

fn rounded_xl(self) -> Self

Sets the border radius of the element. Docs Read more
Source§

fn rounded_2xl(self) -> Self

Sets the border radius of the element. Docs Read more
Source§

fn rounded_3xl(self) -> Self

Sets the border radius of the element. Docs Read more
Source§

fn rounded_full(self) -> Self

Sets the border radius of the element. Docs Read more
Source§

fn rounded_t(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border radius of the top side of the element. Docs
Source§

fn rounded_t_none(self) -> Self

Sets the border radius of the top side of the element. Docs Read more
Source§

fn rounded_t_xs(self) -> Self

Sets the border radius of the top side of the element. Docs Read more
Source§

fn rounded_t_sm(self) -> Self

Sets the border radius of the top side of the element. Docs Read more
Source§

fn rounded_t_md(self) -> Self

Sets the border radius of the top side of the element. Docs Read more
Source§

fn rounded_t_lg(self) -> Self

Sets the border radius of the top side of the element. Docs Read more
Source§

fn rounded_t_xl(self) -> Self

Sets the border radius of the top side of the element. Docs Read more
Source§

fn rounded_t_2xl(self) -> Self

Sets the border radius of the top side of the element. Docs Read more
Source§

fn rounded_t_3xl(self) -> Self

Sets the border radius of the top side of the element. Docs Read more
Source§

fn rounded_t_full(self) -> Self

Sets the border radius of the top side of the element. Docs Read more
Source§

fn rounded_b(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border radius of the bottom side of the element. Docs
Source§

fn rounded_b_none(self) -> Self

Sets the border radius of the bottom side of the element. Docs Read more
Source§

fn rounded_b_xs(self) -> Self

Sets the border radius of the bottom side of the element. Docs Read more
Source§

fn rounded_b_sm(self) -> Self

Sets the border radius of the bottom side of the element. Docs Read more
Source§

fn rounded_b_md(self) -> Self

Sets the border radius of the bottom side of the element. Docs Read more
Source§

fn rounded_b_lg(self) -> Self

Sets the border radius of the bottom side of the element. Docs Read more
Source§

fn rounded_b_xl(self) -> Self

Sets the border radius of the bottom side of the element. Docs Read more
Source§

fn rounded_b_2xl(self) -> Self

Sets the border radius of the bottom side of the element. Docs Read more
Source§

fn rounded_b_3xl(self) -> Self

Sets the border radius of the bottom side of the element. Docs Read more
Source§

fn rounded_b_full(self) -> Self

Sets the border radius of the bottom side of the element. Docs Read more
Source§

fn rounded_r(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border radius of the right side of the element. Docs
Source§

fn rounded_r_none(self) -> Self

Sets the border radius of the right side of the element. Docs Read more
Source§

fn rounded_r_xs(self) -> Self

Sets the border radius of the right side of the element. Docs Read more
Source§

fn rounded_r_sm(self) -> Self

Sets the border radius of the right side of the element. Docs Read more
Source§

fn rounded_r_md(self) -> Self

Sets the border radius of the right side of the element. Docs Read more
Source§

fn rounded_r_lg(self) -> Self

Sets the border radius of the right side of the element. Docs Read more
Source§

fn rounded_r_xl(self) -> Self

Sets the border radius of the right side of the element. Docs Read more
Source§

fn rounded_r_2xl(self) -> Self

Sets the border radius of the right side of the element. Docs Read more
Source§

fn rounded_r_3xl(self) -> Self

Sets the border radius of the right side of the element. Docs Read more
Source§

fn rounded_r_full(self) -> Self

Sets the border radius of the right side of the element. Docs Read more
Source§

fn rounded_l(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border radius of the left side of the element. Docs
Source§

fn rounded_l_none(self) -> Self

Sets the border radius of the left side of the element. Docs Read more
Source§

fn rounded_l_xs(self) -> Self

Sets the border radius of the left side of the element. Docs Read more
Source§

fn rounded_l_sm(self) -> Self

Sets the border radius of the left side of the element. Docs Read more
Source§

fn rounded_l_md(self) -> Self

Sets the border radius of the left side of the element. Docs Read more
Source§

fn rounded_l_lg(self) -> Self

Sets the border radius of the left side of the element. Docs Read more
Source§

fn rounded_l_xl(self) -> Self

Sets the border radius of the left side of the element. Docs Read more
Source§

fn rounded_l_2xl(self) -> Self

Sets the border radius of the left side of the element. Docs Read more
Source§

fn rounded_l_3xl(self) -> Self

Sets the border radius of the left side of the element. Docs Read more
Source§

fn rounded_l_full(self) -> Self

Sets the border radius of the left side of the element. Docs Read more
Source§

fn rounded_tl(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border radius of the top left corner of the element. Docs
Source§

fn rounded_tl_none(self) -> Self

Sets the border radius of the top left corner of the element. Docs Read more
Source§

fn rounded_tl_xs(self) -> Self

Sets the border radius of the top left corner of the element. Docs Read more
Source§

fn rounded_tl_sm(self) -> Self

Sets the border radius of the top left corner of the element. Docs Read more
Source§

fn rounded_tl_md(self) -> Self

Sets the border radius of the top left corner of the element. Docs Read more
Source§

fn rounded_tl_lg(self) -> Self

Sets the border radius of the top left corner of the element. Docs Read more
Source§

fn rounded_tl_xl(self) -> Self

Sets the border radius of the top left corner of the element. Docs Read more
Source§

fn rounded_tl_2xl(self) -> Self

Sets the border radius of the top left corner of the element. Docs Read more
Source§

fn rounded_tl_3xl(self) -> Self

Sets the border radius of the top left corner of the element. Docs Read more
Source§

fn rounded_tl_full(self) -> Self

Sets the border radius of the top left corner of the element. Docs Read more
Source§

fn rounded_tr(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border radius of the top right corner of the element. Docs
Source§

fn rounded_tr_none(self) -> Self

Sets the border radius of the top right corner of the element. Docs Read more
Source§

fn rounded_tr_xs(self) -> Self

Sets the border radius of the top right corner of the element. Docs Read more
Source§

fn rounded_tr_sm(self) -> Self

Sets the border radius of the top right corner of the element. Docs Read more
Source§

fn rounded_tr_md(self) -> Self

Sets the border radius of the top right corner of the element. Docs Read more
Source§

fn rounded_tr_lg(self) -> Self

Sets the border radius of the top right corner of the element. Docs Read more
Source§

fn rounded_tr_xl(self) -> Self

Sets the border radius of the top right corner of the element. Docs Read more
Source§

fn rounded_tr_2xl(self) -> Self

Sets the border radius of the top right corner of the element. Docs Read more
Source§

fn rounded_tr_3xl(self) -> Self

Sets the border radius of the top right corner of the element. Docs Read more
Source§

fn rounded_tr_full(self) -> Self

Sets the border radius of the top right corner of the element. Docs Read more
Source§

fn rounded_bl(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border radius of the bottom left corner of the element. Docs
Source§

fn rounded_bl_none(self) -> Self

Sets the border radius of the bottom left corner of the element. Docs Read more
Source§

fn rounded_bl_xs(self) -> Self

Sets the border radius of the bottom left corner of the element. Docs Read more
Source§

fn rounded_bl_sm(self) -> Self

Sets the border radius of the bottom left corner of the element. Docs Read more
Source§

fn rounded_bl_md(self) -> Self

Sets the border radius of the bottom left corner of the element. Docs Read more
Source§

fn rounded_bl_lg(self) -> Self

Sets the border radius of the bottom left corner of the element. Docs Read more
Source§

fn rounded_bl_xl(self) -> Self

Sets the border radius of the bottom left corner of the element. Docs Read more
Source§

fn rounded_bl_2xl(self) -> Self

Sets the border radius of the bottom left corner of the element. Docs Read more
Source§

fn rounded_bl_3xl(self) -> Self

Sets the border radius of the bottom left corner of the element. Docs Read more
Source§

fn rounded_bl_full(self) -> Self

Sets the border radius of the bottom left corner of the element. Docs Read more
Source§

fn rounded_br(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border radius of the bottom right corner of the element. Docs
Source§

fn rounded_br_none(self) -> Self

Sets the border radius of the bottom right corner of the element. Docs Read more
Source§

fn rounded_br_xs(self) -> Self

Sets the border radius of the bottom right corner of the element. Docs Read more
Source§

fn rounded_br_sm(self) -> Self

Sets the border radius of the bottom right corner of the element. Docs Read more
Source§

fn rounded_br_md(self) -> Self

Sets the border radius of the bottom right corner of the element. Docs Read more
Source§

fn rounded_br_lg(self) -> Self

Sets the border radius of the bottom right corner of the element. Docs Read more
Source§

fn rounded_br_xl(self) -> Self

Sets the border radius of the bottom right corner of the element. Docs Read more
Source§

fn rounded_br_2xl(self) -> Self

Sets the border radius of the bottom right corner of the element. Docs Read more
Source§

fn rounded_br_3xl(self) -> Self

Sets the border radius of the bottom right corner of the element. Docs Read more
Source§

fn rounded_br_full(self) -> Self

Sets the border radius of the bottom right corner of the element. Docs Read more
Source§

fn visible(self) -> Self

Sets the visibility of the element to visible. Docs
Source§

fn invisible(self) -> Self

Sets the visibility of the element to hidden. Docs
Source§

fn m(self, length: impl Clone + Into<Length>) -> Self

Sets the margin of the element. Docs
Source§

fn m_0(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_0(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_0p5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_0p5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_1(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_1(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_1p5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_1p5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_2(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_2(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_2p5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_2p5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_3(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_3(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_3p5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_3p5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_4(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_4(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_6(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_6(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_7(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_7(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_8(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_8(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_9(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_9(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_10(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_10(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_11(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_11(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_12(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_12(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_16(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_16(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_20(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_20(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_24(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_24(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_32(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_32(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_40(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_40(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_48(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_48(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_56(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_56(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_64(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_64(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_72(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_72(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_80(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_80(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_96(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_96(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_112(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_112(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_128(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_128(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_auto(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_px(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_px(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_full(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_full(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_1_2(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_1_2(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_1_3(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_1_3(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_2_3(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_2_3(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_1_4(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_1_4(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_2_4(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_2_4(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_3_4(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_3_4(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_1_5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_1_5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_2_5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_2_5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_3_5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_3_5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_4_5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_4_5(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_1_6(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_1_6(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_5_6(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_5_6(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_1_12(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn m_neg_1_12(self) -> Self

Sets the margin of the element. Docs Read more
Source§

fn mt(self, length: impl Clone + Into<Length>) -> Self

Sets the top margin of the element. Docs
Source§

fn mt_0(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_0(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_0p5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_0p5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_1(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_1(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_1p5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_1p5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_2(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_2(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_2p5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_2p5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_3(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_3(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_3p5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_3p5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_4(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_4(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_6(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_6(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_7(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_7(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_8(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_8(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_9(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_9(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_10(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_10(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_11(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_11(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_12(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_12(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_16(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_16(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_20(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_20(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_24(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_24(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_32(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_32(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_40(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_40(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_48(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_48(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_56(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_56(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_64(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_64(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_72(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_72(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_80(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_80(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_96(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_96(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_112(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_112(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_128(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_128(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_auto(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_px(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_px(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_full(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_full(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_1_2(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_1_2(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_1_3(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_1_3(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_2_3(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_2_3(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_1_4(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_1_4(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_2_4(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_2_4(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_3_4(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_3_4(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_1_5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_1_5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_2_5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_2_5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_3_5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_3_5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_4_5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_4_5(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_1_6(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_1_6(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_5_6(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_5_6(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_1_12(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mt_neg_1_12(self) -> Self

Sets the top margin of the element. Docs Read more
Source§

fn mb(self, length: impl Clone + Into<Length>) -> Self

Sets the bottom margin of the element. Docs
Source§

fn mb_0(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_0(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_0p5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_0p5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_1(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_1(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_1p5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_1p5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_2(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_2(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_2p5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_2p5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_3(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_3(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_3p5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_3p5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_4(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_4(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_6(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_6(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_7(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_7(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_8(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_8(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_9(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_9(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_10(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_10(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_11(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_11(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_12(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_12(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_16(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_16(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_20(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_20(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_24(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_24(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_32(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_32(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_40(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_40(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_48(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_48(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_56(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_56(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_64(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_64(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_72(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_72(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_80(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_80(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_96(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_96(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_112(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_112(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_128(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_128(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_auto(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_px(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_px(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_full(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_full(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_1_2(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_1_2(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_1_3(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_1_3(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_2_3(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_2_3(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_1_4(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_1_4(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_2_4(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_2_4(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_3_4(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_3_4(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_1_5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_1_5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_2_5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_2_5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_3_5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_3_5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_4_5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_4_5(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_1_6(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_1_6(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_5_6(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_5_6(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_1_12(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn mb_neg_1_12(self) -> Self

Sets the bottom margin of the element. Docs Read more
Source§

fn my(self, length: impl Clone + Into<Length>) -> Self

Sets the vertical margin of the element. Docs
Source§

fn my_0(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_0(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_0p5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_0p5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_1(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_1(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_1p5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_1p5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_2(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_2(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_2p5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_2p5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_3(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_3(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_3p5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_3p5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_4(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_4(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_6(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_6(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_7(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_7(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_8(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_8(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_9(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_9(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_10(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_10(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_11(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_11(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_12(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_12(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_16(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_16(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_20(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_20(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_24(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_24(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_32(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_32(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_40(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_40(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_48(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_48(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_56(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_56(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_64(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_64(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_72(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_72(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_80(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_80(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_96(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_96(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_112(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_112(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_128(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_128(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_auto(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_px(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_px(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_full(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_full(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_1_2(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_1_2(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_1_3(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_1_3(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_2_3(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_2_3(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_1_4(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_1_4(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_2_4(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_2_4(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_3_4(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_3_4(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_1_5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_1_5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_2_5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_2_5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_3_5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_3_5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_4_5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_4_5(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_1_6(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_1_6(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_5_6(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_5_6(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_1_12(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn my_neg_1_12(self) -> Self

Sets the vertical margin of the element. Docs Read more
Source§

fn mx(self, length: impl Clone + Into<Length>) -> Self

Sets the horizontal margin of the element. Docs
Source§

fn mx_0(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_0(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_0p5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_0p5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_1(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_1(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_1p5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_1p5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_2(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_2(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_2p5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_2p5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_3(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_3(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_3p5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_3p5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_4(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_4(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_6(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_6(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_7(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_7(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_8(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_8(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_9(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_9(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_10(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_10(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_11(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_11(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_12(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_12(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_16(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_16(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_20(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_20(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_24(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_24(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_32(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_32(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_40(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_40(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_48(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_48(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_56(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_56(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_64(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_64(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_72(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_72(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_80(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_80(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_96(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_96(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_112(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_112(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_128(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_128(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_auto(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_px(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_px(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_full(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_full(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_1_2(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_1_2(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_1_3(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_1_3(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_2_3(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_2_3(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_1_4(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_1_4(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_2_4(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_2_4(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_3_4(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_3_4(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_1_5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_1_5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_2_5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_2_5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_3_5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_3_5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_4_5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_4_5(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_1_6(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_1_6(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_5_6(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_5_6(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_1_12(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn mx_neg_1_12(self) -> Self

Sets the horizontal margin of the element. Docs Read more
Source§

fn ml(self, length: impl Clone + Into<Length>) -> Self

Sets the left margin of the element. Docs
Source§

fn ml_0(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_0(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_0p5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_0p5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_1(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_1(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_1p5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_1p5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_2(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_2(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_2p5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_2p5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_3(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_3(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_3p5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_3p5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_4(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_4(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_6(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_6(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_7(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_7(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_8(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_8(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_9(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_9(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_10(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_10(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_11(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_11(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_12(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_12(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_16(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_16(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_20(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_20(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_24(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_24(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_32(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_32(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_40(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_40(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_48(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_48(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_56(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_56(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_64(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_64(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_72(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_72(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_80(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_80(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_96(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_96(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_112(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_112(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_128(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_128(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_auto(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_px(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_px(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_full(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_full(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_1_2(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_1_2(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_1_3(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_1_3(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_2_3(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_2_3(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_1_4(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_1_4(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_2_4(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_2_4(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_3_4(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_3_4(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_1_5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_1_5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_2_5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_2_5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_3_5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_3_5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_4_5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_4_5(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_1_6(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_1_6(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_5_6(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_5_6(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_1_12(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn ml_neg_1_12(self) -> Self

Sets the left margin of the element. Docs Read more
Source§

fn mr(self, length: impl Clone + Into<Length>) -> Self

Sets the right margin of the element. Docs
Source§

fn mr_0(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_0(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_0p5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_0p5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_1(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_1(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_1p5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_1p5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_2(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_2(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_2p5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_2p5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_3(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_3(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_3p5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_3p5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_4(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_4(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_6(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_6(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_7(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_7(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_8(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_8(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_9(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_9(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_10(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_10(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_11(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_11(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_12(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_12(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_16(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_16(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_20(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_20(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_24(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_24(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_32(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_32(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_40(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_40(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_48(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_48(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_56(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_56(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_64(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_64(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_72(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_72(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_80(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_80(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_96(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_96(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_112(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_112(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_128(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_128(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_auto(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_px(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_px(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_full(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_full(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_1_2(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_1_2(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_1_3(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_1_3(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_2_3(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_2_3(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_1_4(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_1_4(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_2_4(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_2_4(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_3_4(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_3_4(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_1_5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_1_5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_2_5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_2_5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_3_5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_3_5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_4_5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_4_5(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_1_6(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_1_6(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_5_6(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_5_6(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_1_12(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn mr_neg_1_12(self) -> Self

Sets the right margin of the element. Docs Read more
Source§

fn p(self, length: impl Clone + Into<DefiniteLength>) -> Self

Sets the padding of the element. Docs
Source§

fn p_0(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_0(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_0p5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_0p5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_1(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_1(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_1p5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_1p5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_2(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_2(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_2p5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_2p5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_3(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_3(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_3p5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_3p5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_4(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_4(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_6(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_6(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_7(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_7(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_8(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_8(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_9(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_9(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_10(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_10(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_11(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_11(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_12(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_12(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_16(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_16(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_20(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_20(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_24(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_24(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_32(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_32(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_40(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_40(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_48(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_48(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_56(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_56(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_64(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_64(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_72(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_72(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_80(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_80(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_96(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_96(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_112(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_112(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_128(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_128(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_px(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_px(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_full(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_full(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_1_2(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_1_2(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_1_3(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_1_3(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_2_3(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_2_3(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_1_4(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_1_4(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_2_4(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_2_4(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_3_4(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_3_4(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_1_5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_1_5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_2_5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_2_5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_3_5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_3_5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_4_5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_4_5(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_1_6(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_1_6(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_5_6(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_5_6(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_1_12(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn p_neg_1_12(self) -> Self

Sets the padding of the element. Docs Read more
Source§

fn pt(self, length: impl Clone + Into<DefiniteLength>) -> Self

Sets the top padding of the element. Docs
Source§

fn pt_0(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_0(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_0p5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_0p5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_1(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_1(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_1p5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_1p5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_2(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_2(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_2p5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_2p5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_3(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_3(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_3p5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_3p5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_4(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_4(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_6(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_6(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_7(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_7(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_8(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_8(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_9(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_9(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_10(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_10(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_11(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_11(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_12(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_12(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_16(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_16(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_20(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_20(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_24(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_24(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_32(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_32(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_40(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_40(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_48(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_48(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_56(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_56(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_64(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_64(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_72(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_72(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_80(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_80(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_96(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_96(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_112(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_112(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_128(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_128(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_px(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_px(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_full(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_full(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_1_2(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_1_2(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_1_3(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_1_3(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_2_3(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_2_3(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_1_4(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_1_4(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_2_4(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_2_4(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_3_4(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_3_4(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_1_5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_1_5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_2_5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_2_5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_3_5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_3_5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_4_5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_4_5(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_1_6(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_1_6(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_5_6(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_5_6(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_1_12(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pt_neg_1_12(self) -> Self

Sets the top padding of the element. Docs Read more
Source§

fn pb(self, length: impl Clone + Into<DefiniteLength>) -> Self

Sets the bottom padding of the element. Docs
Source§

fn pb_0(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_0(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_0p5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_0p5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_1(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_1(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_1p5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_1p5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_2(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_2(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_2p5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_2p5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_3(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_3(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_3p5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_3p5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_4(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_4(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_6(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_6(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_7(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_7(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_8(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_8(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_9(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_9(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_10(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_10(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_11(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_11(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_12(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_12(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_16(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_16(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_20(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_20(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_24(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_24(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_32(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_32(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_40(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_40(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_48(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_48(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_56(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_56(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_64(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_64(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_72(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_72(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_80(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_80(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_96(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_96(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_112(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_112(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_128(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_128(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_px(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_px(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_full(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_full(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_1_2(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_1_2(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_1_3(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_1_3(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_2_3(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_2_3(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_1_4(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_1_4(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_2_4(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_2_4(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_3_4(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_3_4(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_1_5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_1_5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_2_5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_2_5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_3_5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_3_5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_4_5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_4_5(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_1_6(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_1_6(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_5_6(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_5_6(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_1_12(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn pb_neg_1_12(self) -> Self

Sets the bottom padding of the element. Docs Read more
Source§

fn px(self, length: impl Clone + Into<DefiniteLength>) -> Self

Sets the horizontal padding of the element. Docs
Source§

fn px_0(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_0(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_0p5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_0p5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_1(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_1(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_1p5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_1p5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_2(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_2(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_2p5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_2p5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_3(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_3(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_3p5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_3p5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_4(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_4(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_6(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_6(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_7(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_7(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_8(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_8(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_9(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_9(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_10(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_10(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_11(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_11(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_12(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_12(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_16(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_16(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_20(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_20(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_24(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_24(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_32(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_32(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_40(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_40(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_48(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_48(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_56(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_56(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_64(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_64(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_72(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_72(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_80(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_80(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_96(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_96(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_112(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_112(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_128(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_128(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_px(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_px(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_full(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_full(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_1_2(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_1_2(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_1_3(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_1_3(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_2_3(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_2_3(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_1_4(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_1_4(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_2_4(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_2_4(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_3_4(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_3_4(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_1_5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_1_5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_2_5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_2_5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_3_5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_3_5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_4_5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_4_5(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_1_6(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_1_6(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_5_6(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_5_6(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_1_12(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn px_neg_1_12(self) -> Self

Sets the horizontal padding of the element. Docs Read more
Source§

fn py(self, length: impl Clone + Into<DefiniteLength>) -> Self

Sets the vertical padding of the element. Docs
Source§

fn py_0(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_0(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_0p5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_0p5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_1(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_1(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_1p5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_1p5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_2(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_2(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_2p5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_2p5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_3(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_3(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_3p5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_3p5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_4(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_4(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_6(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_6(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_7(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_7(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_8(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_8(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_9(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_9(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_10(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_10(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_11(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_11(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_12(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_12(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_16(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_16(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_20(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_20(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_24(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_24(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_32(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_32(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_40(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_40(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_48(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_48(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_56(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_56(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_64(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_64(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_72(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_72(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_80(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_80(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_96(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_96(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_112(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_112(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_128(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_128(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_px(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_px(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_full(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_full(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_1_2(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_1_2(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_1_3(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_1_3(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_2_3(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_2_3(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_1_4(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_1_4(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_2_4(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_2_4(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_3_4(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_3_4(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_1_5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_1_5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_2_5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_2_5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_3_5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_3_5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_4_5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_4_5(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_1_6(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_1_6(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_5_6(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_5_6(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_1_12(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn py_neg_1_12(self) -> Self

Sets the vertical padding of the element. Docs Read more
Source§

fn pl(self, length: impl Clone + Into<DefiniteLength>) -> Self

Sets the left padding of the element. Docs
Source§

fn pl_0(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_0(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_0p5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_0p5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_1(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_1(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_1p5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_1p5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_2(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_2(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_2p5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_2p5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_3(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_3(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_3p5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_3p5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_4(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_4(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_6(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_6(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_7(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_7(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_8(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_8(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_9(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_9(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_10(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_10(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_11(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_11(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_12(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_12(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_16(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_16(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_20(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_20(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_24(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_24(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_32(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_32(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_40(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_40(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_48(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_48(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_56(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_56(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_64(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_64(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_72(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_72(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_80(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_80(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_96(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_96(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_112(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_112(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_128(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_128(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_px(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_px(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_full(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_full(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_1_2(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_1_2(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_1_3(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_1_3(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_2_3(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_2_3(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_1_4(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_1_4(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_2_4(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_2_4(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_3_4(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_3_4(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_1_5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_1_5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_2_5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_2_5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_3_5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_3_5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_4_5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_4_5(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_1_6(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_1_6(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_5_6(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_5_6(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_1_12(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pl_neg_1_12(self) -> Self

Sets the left padding of the element. Docs Read more
Source§

fn pr(self, length: impl Clone + Into<DefiniteLength>) -> Self

Sets the right padding of the element. Docs
Source§

fn pr_0(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_0(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_0p5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_0p5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_1(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_1(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_1p5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_1p5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_2(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_2(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_2p5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_2p5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_3(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_3(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_3p5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_3p5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_4(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_4(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_6(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_6(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_7(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_7(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_8(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_8(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_9(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_9(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_10(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_10(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_11(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_11(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_12(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_12(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_16(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_16(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_20(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_20(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_24(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_24(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_32(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_32(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_40(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_40(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_48(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_48(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_56(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_56(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_64(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_64(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_72(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_72(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_80(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_80(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_96(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_96(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_112(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_112(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_128(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_128(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_px(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_px(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_full(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_full(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_1_2(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_1_2(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_1_3(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_1_3(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_2_3(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_2_3(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_1_4(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_1_4(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_2_4(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_2_4(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_3_4(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_3_4(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_1_5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_1_5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_2_5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_2_5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_3_5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_3_5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_4_5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_4_5(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_1_6(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_1_6(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_5_6(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_5_6(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_1_12(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn pr_neg_1_12(self) -> Self

Sets the right padding of the element. Docs Read more
Source§

fn relative(self) -> Self

Sets the position of the element to relative. Docs
Source§

fn absolute(self) -> Self

Sets the position of the element to absolute. Docs
Source§

fn inset(self, length: impl Clone + Into<Length>) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs
Source§

fn inset_0(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_0(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_0p5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_0p5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_1(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_1(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_1p5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_1p5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_2(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_2(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_2p5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_2p5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_3(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_3(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_3p5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_3p5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_4(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_4(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_6(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_6(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_7(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_7(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_8(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_8(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_9(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_9(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_10(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_10(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_11(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_11(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_12(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_12(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_16(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_16(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_20(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_20(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_24(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_24(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_32(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_32(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_40(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_40(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_48(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_48(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_56(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_56(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_64(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_64(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_72(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_72(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_80(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_80(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_96(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_96(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_112(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_112(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_128(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_128(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_auto(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_px(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_px(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_full(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_full(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_1_2(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_1_2(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_1_3(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_1_3(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_2_3(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_2_3(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_1_4(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_1_4(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_2_4(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_2_4(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_3_4(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_3_4(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_1_5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_1_5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_2_5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_2_5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_3_5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_3_5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_4_5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_4_5(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_1_6(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_1_6(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_5_6(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_5_6(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_1_12(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn inset_neg_1_12(self) -> Self

Sets the top, right, bottom, and left values of a positioned element. Docs Read more
Source§

fn top(self, length: impl Clone + Into<Length>) -> Self

Sets the top value of a positioned element. Docs
Source§

fn top_0(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_0(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_0p5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_0p5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_1(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_1(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_1p5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_1p5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_2(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_2(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_2p5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_2p5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_3(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_3(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_3p5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_3p5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_4(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_4(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_6(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_6(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_7(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_7(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_8(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_8(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_9(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_9(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_10(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_10(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_11(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_11(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_12(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_12(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_16(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_16(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_20(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_20(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_24(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_24(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_32(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_32(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_40(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_40(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_48(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_48(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_56(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_56(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_64(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_64(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_72(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_72(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_80(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_80(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_96(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_96(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_112(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_112(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_128(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_128(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_auto(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_px(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_px(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_full(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_full(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_1_2(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_1_2(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_1_3(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_1_3(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_2_3(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_2_3(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_1_4(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_1_4(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_2_4(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_2_4(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_3_4(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_3_4(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_1_5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_1_5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_2_5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_2_5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_3_5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_3_5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_4_5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_4_5(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_1_6(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_1_6(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_5_6(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_5_6(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_1_12(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn top_neg_1_12(self) -> Self

Sets the top value of a positioned element. Docs Read more
Source§

fn bottom(self, length: impl Clone + Into<Length>) -> Self

Sets the bottom value of a positioned element. Docs
Source§

fn bottom_0(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_0(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_0p5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_0p5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_1(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_1(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_1p5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_1p5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_2(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_2(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_2p5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_2p5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_3(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_3(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_3p5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_3p5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_4(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_4(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_6(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_6(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_7(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_7(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_8(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_8(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_9(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_9(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_10(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_10(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_11(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_11(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_12(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_12(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_16(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_16(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_20(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_20(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_24(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_24(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_32(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_32(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_40(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_40(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_48(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_48(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_56(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_56(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_64(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_64(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_72(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_72(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_80(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_80(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_96(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_96(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_112(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_112(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_128(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_128(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_auto(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_px(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_px(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_full(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_full(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_1_2(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_1_2(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_1_3(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_1_3(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_2_3(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_2_3(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_1_4(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_1_4(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_2_4(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_2_4(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_3_4(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_3_4(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_1_5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_1_5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_2_5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_2_5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_3_5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_3_5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_4_5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_4_5(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_1_6(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_1_6(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_5_6(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_5_6(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_1_12(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn bottom_neg_1_12(self) -> Self

Sets the bottom value of a positioned element. Docs Read more
Source§

fn left(self, length: impl Clone + Into<Length>) -> Self

Sets the left value of a positioned element. Docs
Source§

fn left_0(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_0(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_0p5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_0p5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_1(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_1(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_1p5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_1p5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_2(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_2(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_2p5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_2p5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_3(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_3(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_3p5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_3p5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_4(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_4(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_6(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_6(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_7(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_7(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_8(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_8(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_9(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_9(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_10(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_10(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_11(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_11(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_12(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_12(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_16(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_16(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_20(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_20(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_24(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_24(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_32(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_32(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_40(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_40(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_48(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_48(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_56(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_56(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_64(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_64(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_72(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_72(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_80(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_80(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_96(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_96(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_112(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_112(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_128(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_128(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_auto(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_px(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_px(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_full(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_full(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_1_2(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_1_2(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_1_3(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_1_3(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_2_3(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_2_3(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_1_4(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_1_4(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_2_4(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_2_4(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_3_4(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_3_4(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_1_5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_1_5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_2_5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_2_5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_3_5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_3_5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_4_5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_4_5(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_1_6(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_1_6(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_5_6(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_5_6(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_1_12(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn left_neg_1_12(self) -> Self

Sets the left value of a positioned element. Docs Read more
Source§

fn right(self, length: impl Clone + Into<Length>) -> Self

Sets the right value of a positioned element. Docs
Source§

fn right_0(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_0(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_0p5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_0p5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_1(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_1(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_1p5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_1p5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_2(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_2(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_2p5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_2p5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_3(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_3(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_3p5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_3p5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_4(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_4(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_6(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_6(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_7(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_7(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_8(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_8(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_9(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_9(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_10(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_10(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_11(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_11(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_12(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_12(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_16(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_16(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_20(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_20(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_24(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_24(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_32(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_32(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_40(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_40(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_48(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_48(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_56(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_56(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_64(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_64(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_72(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_72(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_80(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_80(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_96(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_96(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_112(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_112(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_128(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_128(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_auto(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_px(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_px(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_full(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_full(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_1_2(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_1_2(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_1_3(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_1_3(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_2_3(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_2_3(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_1_4(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_1_4(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_2_4(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_2_4(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_3_4(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_3_4(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_1_5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_1_5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_2_5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_2_5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_3_5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_3_5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_4_5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_4_5(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_1_6(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_1_6(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_5_6(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_5_6(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_1_12(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn right_neg_1_12(self) -> Self

Sets the right value of a positioned element. Docs Read more
Source§

fn overflow_hidden(self) -> Self

Sets the behavior of content that overflows the container to be hidden. Docs
Source§

fn overflow_x_hidden(self) -> Self

Sets the behavior of content that overflows the container on the X axis to be hidden. Docs
Source§

fn overflow_y_hidden(self) -> Self

Sets the behavior of content that overflows the container on the Y axis to be hidden. Docs
Source§

fn cursor(self, cursor: CursorStyle) -> Self

Set the cursor style when hovering over this element
Source§

fn cursor_default(self) -> Self

Sets the cursor style when hovering an element to default. Docs
Source§

fn cursor_pointer(self) -> Self

Sets the cursor style when hovering an element to pointer. Docs
Source§

fn cursor_text(self) -> Self

Sets cursor style when hovering over an element to text. Docs
Source§

fn cursor_move(self) -> Self

Sets cursor style when hovering over an element to move. Docs
Source§

fn cursor_not_allowed(self) -> Self

Sets cursor style when hovering over an element to not-allowed. Docs
Source§

fn cursor_context_menu(self) -> Self

Sets cursor style when hovering over an element to context-menu. Docs
Source§

fn cursor_crosshair(self) -> Self

Sets cursor style when hovering over an element to crosshair. Docs
Source§

fn cursor_vertical_text(self) -> Self

Sets cursor style when hovering over an element to vertical-text. Docs
Source§

fn cursor_alias(self) -> Self

Sets cursor style when hovering over an element to alias. Docs
Source§

fn cursor_copy(self) -> Self

Sets cursor style when hovering over an element to copy. Docs
Source§

fn cursor_no_drop(self) -> Self

Sets cursor style when hovering over an element to no-drop. Docs
Source§

fn cursor_grab(self) -> Self

Sets cursor style when hovering over an element to grab. Docs
Source§

fn cursor_grabbing(self) -> Self

Sets cursor style when hovering over an element to grabbing. Docs
Source§

fn cursor_ew_resize(self) -> Self

Sets cursor style when hovering over an element to ew-resize. Docs
Source§

fn cursor_ns_resize(self) -> Self

Sets cursor style when hovering over an element to ns-resize. Docs
Source§

fn cursor_nesw_resize(self) -> Self

Sets cursor style when hovering over an element to nesw-resize. Docs
Source§

fn cursor_nwse_resize(self) -> Self

Sets cursor style when hovering over an element to nwse-resize. Docs
Source§

fn cursor_col_resize(self) -> Self

Sets cursor style when hovering over an element to col-resize. Docs
Source§

fn cursor_row_resize(self) -> Self

Sets cursor style when hovering over an element to row-resize. Docs
Source§

fn cursor_n_resize(self) -> Self

Sets cursor style when hovering over an element to n-resize. Docs
Source§

fn cursor_e_resize(self) -> Self

Sets cursor style when hovering over an element to e-resize. Docs
Source§

fn cursor_s_resize(self) -> Self

Sets cursor style when hovering over an element to s-resize. Docs
Source§

fn cursor_w_resize(self) -> Self

Sets cursor style when hovering over an element to w-resize. Docs
Source§

fn cursor_none(self, cursor: CursorStyle) -> Self

Sets cursor style when hovering over an element to none. Docs
Source§

fn border_color<C>(self, border_color: C) -> Self
where C: Into<Hsla>, Self: Sized,

Sets the border color of the element.
Source§

fn border(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border width of the element. Docs
Source§

fn border_0(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_1(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_2(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_3(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_4(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_5(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_6(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_7(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_8(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_9(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_10(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_11(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_12(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_16(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_20(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_24(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_32(self) -> Self

Sets the border width of the element. Docs Read more
Source§

fn border_t(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border width of the top side of the element. Docs
Source§

fn border_t_0(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_1(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_2(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_3(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_4(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_5(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_6(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_7(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_8(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_9(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_10(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_11(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_12(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_16(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_20(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_24(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_t_32(self) -> Self

Sets the border width of the top side of the element. Docs Read more
Source§

fn border_b(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border width of the bottom side of the element. Docs
Source§

fn border_b_0(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_1(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_2(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_3(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_4(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_5(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_6(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_7(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_8(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_9(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_10(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_11(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_12(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_16(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_20(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_24(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_b_32(self) -> Self

Sets the border width of the bottom side of the element. Docs Read more
Source§

fn border_r(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border width of the right side of the element. Docs
Source§

fn border_r_0(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_1(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_2(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_3(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_4(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_5(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_6(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_7(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_8(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_9(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_10(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_11(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_12(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_16(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_20(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_24(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_r_32(self) -> Self

Sets the border width of the right side of the element. Docs Read more
Source§

fn border_l(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border width of the left side of the element. Docs
Source§

fn border_l_0(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_1(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_2(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_3(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_4(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_5(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_6(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_7(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_8(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_9(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_10(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_11(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_12(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_16(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_20(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_24(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_l_32(self) -> Self

Sets the border width of the left side of the element. Docs Read more
Source§

fn border_x(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border width of the vertical sides of the element. Docs
Source§

fn border_x_0(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_1(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_2(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_3(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_4(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_5(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_6(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_7(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_8(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_9(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_10(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_11(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_12(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_16(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_20(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_24(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_x_32(self) -> Self

Sets the border width of the vertical sides of the element. Docs Read more
Source§

fn border_y(self, length: impl Clone + Into<AbsoluteLength>) -> Self

Sets the border width of the horizontal sides of the element. Docs
Source§

fn border_y_0(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_1(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_2(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_3(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_4(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_5(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_6(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_7(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_8(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_9(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_10(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_11(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_12(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_16(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_20(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_24(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn border_y_32(self) -> Self

Sets the border width of the horizontal sides of the element. Docs Read more
Source§

fn shadow(self, shadows: Vec<BoxShadow>) -> Self

Sets the box shadow of the element. Docs
Source§

fn shadow_none(self) -> Self

Clears the box shadow of the element. Docs
Source§

fn shadow_2xs(self) -> Self

Sets the box shadow of the element. Docs
Source§

fn shadow_xs(self) -> Self

Sets the box shadow of the element. Docs
Source§

fn shadow_sm(self) -> Self

Sets the box shadow of the element. Docs
Source§

fn shadow_md(self) -> Self

Sets the box shadow of the element. Docs
Source§

fn shadow_lg(self) -> Self

Sets the box shadow of the element. Docs
Source§

fn shadow_xl(self) -> Self

Sets the box shadow of the element. Docs
Source§

fn shadow_2xl(self) -> Self

Sets the box shadow of the element. Docs
Source§

fn block(self) -> Self

Sets the display type of the element to block. Docs
Source§

fn flex(self) -> Self

Sets the display type of the element to flex. Docs
Source§

fn grid(self) -> Self

Sets the display type of the element to grid. Docs
Source§

fn whitespace_normal(self) -> Self

Sets the whitespace of the element to normal. Docs
Source§

fn whitespace_nowrap(self) -> Self

Sets the whitespace of the element to nowrap. Docs
Source§

fn text_ellipsis(self) -> Self

Sets the truncate overflowing text with an ellipsis (…) if needed. Docs
Source§

fn text_overflow(self, overflow: TextOverflow) -> Self

Sets the text overflow behavior of the element.
Source§

fn text_align(self, align: TextAlign) -> Self

Set the text alignment of the element.
Source§

fn text_left(self) -> Self

Sets the text alignment to left
Source§

fn text_center(self) -> Self

Sets the text alignment to center
Source§

fn text_right(self) -> Self

Sets the text alignment to right
Source§

fn truncate(self) -> Self

Sets the truncate to prevent text from wrapping and truncate overflowing text with an ellipsis (…) if needed. Docs
Source§

fn line_clamp(self, lines: usize) -> Self

Sets number of lines to show before truncating the text. Docs
Source§

fn flex_col(self) -> Self

Sets the flex direction of the element to column. Docs
Source§

fn flex_col_reverse(self) -> Self

Sets the flex direction of the element to column-reverse. Docs
Source§

fn flex_row(self) -> Self

Sets the flex direction of the element to row. Docs
Source§

fn flex_row_reverse(self) -> Self

Sets the flex direction of the element to row-reverse. Docs
Source§

fn flex_1(self) -> Self

Sets the element to allow a flex item to grow and shrink as needed, ignoring its initial size. Docs
Source§

fn flex_auto(self) -> Self

Sets the element to allow a flex item to grow and shrink, taking into account its initial size. Docs
Source§

fn flex_initial(self) -> Self

Sets the element to allow a flex item to shrink but not grow, taking into account its initial size. Docs
Source§

fn flex_none(self) -> Self

Sets the element to prevent a flex item from growing or shrinking. Docs
Source§

fn flex_basis(self, basis: impl Into<Length>) -> Self

Sets the initial size of flex items for this element. Docs
Source§

fn flex_grow(self) -> Self

Sets the element to allow a flex item to grow to fill any available space. Docs
Source§

fn flex_shrink(self) -> Self

Sets the element to allow a flex item to shrink if needed. Docs
Source§

fn flex_shrink_0(self) -> Self

Sets the element to prevent a flex item from shrinking. Docs
Source§

fn flex_wrap(self) -> Self

Sets the element to allow flex items to wrap. Docs
Source§

fn flex_wrap_reverse(self) -> Self

Sets the element wrap flex items in the reverse direction. Docs
Source§

fn flex_nowrap(self) -> Self

Sets the element to prevent flex items from wrapping, causing inflexible items to overflow the container if necessary. Docs
Source§

fn items_start(self) -> Self

Sets the element to align flex items to the start of the container’s cross axis. Docs
Source§

fn items_end(self) -> Self

Sets the element to align flex items to the end of the container’s cross axis. Docs
Source§

fn items_center(self) -> Self

Sets the element to align flex items along the center of the container’s cross axis. Docs
Source§

fn items_baseline(self) -> Self

Sets the element to align flex items along the baseline of the container’s cross axis. Docs
Source§

fn justify_start(self) -> Self

Sets the element to justify flex items against the start of the container’s main axis. Docs
Source§

fn justify_end(self) -> Self

Sets the element to justify flex items against the end of the container’s main axis. Docs
Source§

fn justify_center(self) -> Self

Sets the element to justify flex items along the center of the container’s main axis. Docs
Source§

fn justify_between(self) -> Self

Sets the element to justify flex items along the container’s main axis such that there is an equal amount of space between each item. Docs
Source§

fn justify_around(self) -> Self

Sets the element to justify items along the container’s main axis such that there is an equal amount of space on each side of each item. Docs
Source§

fn content_normal(self) -> Self

Sets the element to pack content items in their default position as if no align-content value was set. Docs
Source§

fn content_center(self) -> Self

Sets the element to pack content items in the center of the container’s cross axis. Docs
Source§

fn content_start(self) -> Self

Sets the element to pack content items against the start of the container’s cross axis. Docs
Source§

fn content_end(self) -> Self

Sets the element to pack content items against the end of the container’s cross axis. Docs
Source§

fn content_between(self) -> Self

Sets the element to pack content items along the container’s cross axis such that there is an equal amount of space between each item. Docs
Source§

fn content_around(self) -> Self

Sets the element to pack content items along the container’s cross axis such that there is an equal amount of space on each side of each item. Docs
Source§

fn content_evenly(self) -> Self

Sets the element to pack content items along the container’s cross axis such that there is an equal amount of space between each item. Docs
Source§

fn content_stretch(self) -> Self

Sets the element to allow content items to fill the available space along the container’s cross axis. Docs
Source§

fn bg<F>(self, fill: F) -> Self
where F: Into<Fill>, Self: Sized,

Sets the background color of the element.
Source§

fn border_dashed(self) -> Self

Sets the border style of the element.
Source§

fn text_style(&mut self) -> &mut Option<TextStyleRefinement>

Returns a mutable reference to the text style that has been configured on this element.
Source§

fn text_color(self, color: impl Into<Hsla>) -> Self

Sets the text color of this element. Read more
Source§

fn font_weight(self, weight: FontWeight) -> Self

Sets the font weight of this element Read more
Source§

fn text_bg(self, bg: impl Into<Hsla>) -> Self

Sets the background color of this element. Read more
Source§

fn text_size(self, size: impl Into<AbsoluteLength>) -> Self

Sets the text size of this element. Read more
Source§

fn text_xs(self) -> Self

Sets the text size to ‘extra small’. Docs
Source§

fn text_sm(self) -> Self

Sets the text size to ‘small’. Docs
Source§

fn text_base(self) -> Self

Sets the text size to ‘base’. Docs
Source§

fn text_lg(self) -> Self

Sets the text size to ‘large’. Docs
Source§

fn text_xl(self) -> Self

Sets the text size to ‘extra large’. Docs
Source§

fn text_2xl(self) -> Self

Sets the text size to ‘extra extra large’. Docs
Source§

fn text_3xl(self) -> Self

Sets the text size to ‘extra extra extra large’. Docs
Source§

fn italic(self) -> Self

Sets the font style of the element to italic. Docs
Source§

fn not_italic(self) -> Self

Sets the font style of the element to normal (not italic). Docs
Source§

fn underline(self) -> Self

Sets the text decoration to underline. Docs
Source§

fn line_through(self) -> Self

Sets the decoration of the text to have a line through it. Docs
Source§

fn text_decoration_none(self) -> Self

Removes the text decoration on this element. Read more
Source§

fn text_decoration_color(self, color: impl Into<Hsla>) -> Self

Sets the color for the underline on this element
Source§

fn text_decoration_solid(self) -> Self

Sets the text decoration style to a solid line. Docs
Source§

fn text_decoration_wavy(self) -> Self

Sets the text decoration style to a wavy line. Docs
Source§

fn text_decoration_0(self) -> Self

Sets the text decoration to be 0px thick. Docs
Source§

fn text_decoration_1(self) -> Self

Sets the text decoration to be 1px thick. Docs
Source§

fn text_decoration_2(self) -> Self

Sets the text decoration to be 2px thick. Docs
Source§

fn text_decoration_4(self) -> Self

Sets the text decoration to be 4px thick. Docs
Source§

fn text_decoration_8(self) -> Self

Sets the text decoration to be 8px thick. Docs
Source§

fn font_family(self, family_name: impl Into<SharedString>) -> Self

Sets the font family of this element and its children.
Source§

fn font(self, font: Font) -> Self

Sets the font of this element and its children.
Source§

fn line_height(self, line_height: impl Into<DefiniteLength>) -> Self

Sets the line height of this element and its children.
Source§

fn opacity(self, opacity: f32) -> Self

Sets the opacity of this element and its children.
Source§

fn grid_cols(self, cols: u16) -> Self

Sets the grid columns of this element.
Source§

fn grid_rows(self, rows: u16) -> Self

Sets the grid rows of this element.
Source§

fn col_start(self, start: i16) -> Self

Sets the column start of this element.
Source§

fn col_start_auto(self) -> Self

Sets the column start of this element to auto.
Source§

fn col_end(self, end: i16) -> Self

Sets the column end of this element.
Source§

fn col_end_auto(self) -> Self

Sets the column end of this element to auto.
Source§

fn col_span(self, span: u16) -> Self

Sets the column span of this element.
Source§

fn col_span_full(self) -> Self

Sets the row span of this element.
Source§

fn row_start(self, start: i16) -> Self

Sets the row start of this element.
Source§

fn row_start_auto(self) -> Self

Sets the row start of this element to “auto”
Source§

fn row_end(self, end: i16) -> Self

Sets the row end of this element.
Source§

fn row_end_auto(self) -> Self

Sets the row end of this element to “auto”
Source§

fn row_span(self, span: u16) -> Self

Sets the row span of this element.
Source§

fn row_span_full(self) -> Self

Sets the row span of this element.
Source§

fn debug(self) -> Self

Draws a debug border around this element.
Source§

fn debug_below(self) -> Self

Draws a debug border on all conforming elements below this element.

Auto Trait Implementations§

§

impl Freeze for Button

§

impl !RefUnwindSafe for Button

§

impl !Send for Button

§

impl !Sync for Button

§

impl Unpin for Button

§

impl !UnwindSafe for Button

Blanket Implementations§

Source§

impl<E> AnimationExt for E
where E: IntoElement + 'static,

Source§

fn with_animation( self, id: impl Into<ElementId>, animation: Animation, animator: impl Fn(Self, f32) -> Self + 'static, ) -> AnimationElement<Self>
where Self: Sized,

Render this component or element with an animation
Source§

fn with_animations( self, id: impl Into<ElementId>, animations: Vec<Animation>, animator: impl Fn(Self, usize, f32) -> Self + 'static, ) -> AnimationElement<Self>
where Self: Sized,

Render this component or element with a chain of animations
Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> Downcast for T
where T: Any,

Source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
Source§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
Source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
Source§

impl<T> FluentBuilder for T
where T: IntoElement,

Source§

fn map<U>(self, f: impl FnOnce(Self) -> U) -> U
where Self: Sized,

Imperatively modify self with the given closure.
Source§

fn when(self, condition: bool, then: impl FnOnce(Self) -> Self) -> Self
where Self: Sized,

Conditionally modify self with the given closure.
Source§

fn when_else( self, condition: bool, then: impl FnOnce(Self) -> Self, else_fn: impl FnOnce(Self) -> Self, ) -> Self
where Self: Sized,

Conditionally modify self with the given closure.
Source§

fn when_some<T>( self, option: Option<T>, then: impl FnOnce(Self, T) -> Self, ) -> Self
where Self: Sized,

Conditionally unwrap and modify self with the given closure, if the given option is Some.
Source§

fn when_none<T>( self, option: &Option<T>, then: impl FnOnce(Self) -> Self, ) -> Self
where Self: Sized,

Conditionally unwrap and modify self with the given closure, if the given option is None.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> StyleSized<T> for T
where T: Styled,

Source§

fn input_text_size(self, size: Size) -> T

Source§

fn input_size(self, size: Size) -> T

Source§

fn input_pl(self, size: Size) -> T

Source§

fn input_pr(self, size: Size) -> T

Source§

fn input_px(self, size: Size) -> T

Source§

fn input_py(self, size: Size) -> T

Source§

fn input_h(self, size: Size) -> T

Source§

fn list_size(self, size: Size) -> T

Source§

fn list_px(self, size: Size) -> T

Source§

fn list_py(self, size: Size) -> T

Source§

fn size_with(self, size: Size) -> T

Apply size with the given Size.
Source§

fn table_cell_size(self, size: Size) -> T

Apply the table cell size (Font size, padding) with the given Size.
Source§

fn button_text_size(self, size: Size) -> T

Source§

impl<E> StyledExt for E
where E: Styled,

Source§

fn refine_style(self, style: &StyleRefinement) -> Self

Refine the style of this element, applying the given style refinement.
Source§

fn h_flex(self) -> Self

Apply self into a horizontal flex layout.
Source§

fn v_flex(self) -> Self

Apply self into a vertical flex layout.
Source§

fn paddings<L>(self, paddings: impl Into<Edges<L>>) -> Self

Apply paddings to the element.
Source§

fn margins<L>(self, margins: impl Into<Edges<L>>) -> Self

Apply margins to the element.
Source§

fn debug_red(self) -> Self

Render a border with a width of 1px, color red
Source§

fn debug_blue(self) -> Self

Render a border with a width of 1px, color blue
Source§

fn debug_yellow(self) -> Self

Render a border with a width of 1px, color yellow
Source§

fn debug_green(self) -> Self

Render a border with a width of 1px, color green
Source§

fn debug_pink(self) -> Self

Render a border with a width of 1px, color pink
Source§

fn debug_focused( self, focus_handle: &FocusHandle, window: &Window, cx: &App, ) -> Self

Render a 1px blue border, when if the element is focused
Source§

fn focused_border(self, cx: &App) -> Self

Render a border with a width of 1px, color ring color
Source§

fn scrollable(self, axis: impl Into<ScrollbarAxis>) -> Scrollable<Self>
where Self: Element,

Wraps the element in a ScrollView. Read more
Source§

fn font_thin(self) -> Self

Source§

fn font_extralight(self) -> Self

Source§

fn font_light(self) -> Self

Source§

fn font_normal(self) -> Self

Source§

fn font_medium(self) -> Self

Source§

fn font_semibold(self) -> Self

Source§

fn font_bold(self) -> Self

Source§

fn font_extrabold(self) -> Self

Source§

fn font_black(self) -> Self

Source§

fn popover_style(self, cx: &App) -> Self

Set as Popover style
Source§

fn corner_radii(self, radius: Corners<Pixels>) -> Self

Set corner radii for the element.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,