table.css 207 B

1234567891011
  1. .table{
  2. width: 100%;
  3. height: calc(100% - 64px);
  4. text-align: center;
  5. overflow: hidden;
  6. }
  7. .table .body{
  8. width: calc(100% + 5px);
  9. max-height: calc(100% - 30px);
  10. overflow-y: scroll;
  11. }