display.py 432 B

12345678910111213141516171819202122232425
  1. from typing import Literal
  2. Display = Literal[
  3. 'block',
  4. 'inline-block',
  5. 'inline',
  6. 'flex',
  7. 'inline-flex',
  8. 'table',
  9. 'inline-table',
  10. 'table-caption',
  11. 'table-cell',
  12. 'table-column',
  13. 'table-column-group',
  14. 'table-footer-group',
  15. 'table-header-group',
  16. 'table-row-group',
  17. 'table-row',
  18. 'flow-root',
  19. 'grid',
  20. 'inline-grid',
  21. 'contents',
  22. 'list-item',
  23. 'hidden',
  24. ]