DisplayMode
A list of all pre-defined display settings.
namespace AngleSharp.Dom.Css
{
public enum DisplayMode : ushort
{
None,
Inline,
Block,
ListItem,
InlineBlock,
InlineTable,
Table,
TableCaption,
TableCell,
TableColumn,
TableColumnGroup,
TableFooterGroup,
TableHeaderGroup,
TableRow,
TableRowGroup,
Flex,
InlineFlex,
Grid,
InlineGrid
}
}