`` is a component that allows for Material styling of a line separator with various orientation options. ### Simple divider A `` element can be used on its own to create a horizontal or vertical line styled with a Material theme ```html ``` ### Inset divider Add the `inset` attribute in order to set whether or not the divider is an inset divider. ```html ``` ### Vertical divider Add the `vertical` attribute in order to set whether or not the divider is vertically-oriented. ```html ``` ### Lists with inset dividers Dividers can be added to lists as a means of separating content into distinct sections. Inset dividers can also be added to provide the appearance of distinct elements in a list without cluttering content like avatar images or icons. Make sure to avoid adding an inset divider to the last element in a list, because it will overlap with the section divider. ```html

Folders

@for (folder of folders; track folder) { folder

{{folder.name}}

{{folder.updated}}

@if (!$last) { }
}

Notes

@for (note of notes; track node) { note

{{note.name}}

{{note.updated}}

}
``` ### Accessibility `MatDivider` applies the ARIA `role="separator"` attribute, exclusively implementing the non-focusable style of separator that distinguishes sections of content.