MDUIDocsEnglish简体中文LightDarkSystem
Preset Colors
Custom Color
Extract Color from Wallpaper
Select a Wallpaper
Getting Started
Styles
Frameworks
Components
Avatar Badge BottomAppBar Button ButtonIcon Card Checkbox Chip CircularProgress Collapse Dialog Divider Dropdown Fab Icon Layout LinearProgress List Menu NavigationBar NavigationDrawer NavigationRail Radio RangeSlider Select SegmentedButton Slider Snackbar Switch Tabs TextField Tooltip TopAppBar
Functions
Libraries

Divider

A divider is a thin line that groups content in lists and layouts.

Usage

Import the component:

import 'mdui/components/divider.js';

Import the TypeScript type:

import type { Divider } from 'mdui/components/divider.js';

Example:

<mdui-divider></mdui-divider>

Examples

Vertical Divider

To display the divider vertically, add the vertical attribute.

Left Inset

To inset the divider from the left, add the inset attribute. This is typically used in lists to align the divider with the text on the left.

Middle Inset

To inset the divider from both sides, add the middle attribute.

API

Properties

AttributePropertyReflectTypeDefault
verticalverticalbooleanfalse

Displays the divider vertically.

insetinsetbooleanfalse

Adds an inset from the left side.

middlemiddlebooleanfalse

Adds insets from both the left and right sides.

On this page