CSS utility classes
The following CSS-only classes are provided as helper utilities. They are useful for making micro-adjustments to existing React components.
Scroll utilities have moved
For overflow and scrolling specific utilities, go to
the Scroll documentation page.Text utilities have moved
For text and typography specific utilities, go to the Text documentation page.
Responsive utilities have moved
For responsive specific utilities, go to the Breakpoint utilities page.
Display
Displaying block
tsx code block:<span className="eui-displayBlock"> /* Your content */ </span>
Displaying inline
tsx code block:<div className="eui-displayInline"> /* Your content */ </div>
Displaying inline block
tsx code block:<span className="eui-displayInlineBlock"> /* Your content */ </span>
eui-fullWidth
className
Changes the element's display property to display: inline-block;
and adds width: 100%;
Displaying full width
tsx code block:<span className="eui-fullWidth"> /* Your content */ </span>
Vertical alignment
Icon is aligned to the top of the text
tsx code block:<EuiIcon className="eui-alignTop" type="logoElasticStack" />
eui-alignMiddle
className
Changes the element's vertical alignment property to vertical-align: middle;
Icon is aligned to the middle of the text
tsx code block:<EuiIcon className="eui-alignMiddle" type="logoElasticStack" />