【elementplus】Solve the problem that after el-table opens show-overflow-tooltip, the display of tooltip will be blocked by the table border

As shown in the picture:
insert image description here
Reasons: 1. The height of the el-table is not set; 2. It is covered

Solution:
Method 1: Set the height for el-table
Method 2:

 .el-table {
    
    
    overflow: visible !important;
 }

If you don't want to set the height for the el-table, you can directly use the second method to solve it

Guess you like

Origin blog.csdn.net/bbt953/article/details/131518853