HTML elements can scroll beyond the part, and hide the scroll bar

HTML elements can scroll beyond the part, and hide the scroll bar

1. Rendering

insert image description here

2. Implementation method

<Row style="height: 200px;overflow: hidden">
      <Col style="height: 100%;width:102%; overflow-y: scroll">
        <Table :data="tableData1" :columns="columns1" ></Table>
      </Col>
    </Row>

3. Description

1层div :设置高度 和 overflow:hidden2层div :设置高度:100% 和 width:102%(隐藏滚动条)和 overflow-y: scroll

Guess you like

Origin blog.csdn.net/zzzz121380/article/details/126379353