12345678910111213141516171819202122232425 |
- from typing import Literal
- Display = Literal[
- 'block',
- 'inline-block',
- 'inline',
- 'flex',
- 'inline-flex',
- 'table',
- 'inline-table',
- 'table-caption',
- 'table-cell',
- 'table-column',
- 'table-column-group',
- 'table-footer-group',
- 'table-header-group',
- 'table-row-group',
- 'table-row',
- 'flow-root',
- 'grid',
- 'inline-grid',
- 'contents',
- 'list-item',
- 'hidden',
- ]
|