admin管理员组

文章数量:1292175

I tried to change the fontSize, but it did not take effect:

<Table
  style={{overflow: 'hidden', width: '100%', fontSize: '10px'}}
  dataSource={data.dataSource}
  columns={columns}
  size='small'
  bordered
  pagination={false}
/>

Also my table doesn't fit in the block. Only 3 columns are displayed and the rest disappear. How can this be resolved?

I tried to change the fontSize, but it did not take effect:

<Table
  style={{overflow: 'hidden', width: '100%', fontSize: '10px'}}
  dataSource={data.dataSource}
  columns={columns}
  size='small'
  bordered
  pagination={false}
/>

Also my table doesn't fit in the block. Only 3 columns are displayed and the rest disappear. How can this be resolved?

Share Improve this question edited Aug 12, 2020 at 9:41 Ed Lucas 7,3554 gold badges40 silver badges50 bronze badges asked Aug 12, 2020 at 8:19 Утка ОбычнаяУтка Обычная 951 gold badge2 silver badges11 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 5
  • your-stylesheet.scss:

    .ant-table table { font-size: 10px; }

Here is the original answer you can use sass or less.

    .booking_information_table {
        :global {
            .ant-table-thead > tr > th,
            .ant-table-tbody > tr > td {
                fontSize: '10px';
            }
    }

Secondly You can use the scroll property of Table and remove overflow: hidden

本文标签: javascriptHow to change the fontSize in an Antd tableStack Overflow