ui.panel_fixed

ui.panel_fixed(
    *args,
    top=None,
    left=None,
    right=None,
    bottom=None,
    width=None,
    height=None,
    draggable=False,
    cursor='auto',
    **kwargs,
)

Create a panel of absolutely positioned content.

This function is equivalent to calling panel_absolute with fixed=True (i.e., the panel does not scroll with the rest of the page). See panel_absolute for more information.

Parameters

*args : TagChild | TagAttrs = ()

UI elements to include inside the panel.

****kwargs** : TagAttrValue = {}

Arguments passed along to panel_absolute.

Returns

: TagList

A UI element.

See Also