Search code examples
csselement-ui

Remove padding in table


I am using Element UI table for to tabulate my data. My problem is I cant remove the padding inside the cell. This is before I make any changes. before

I want to remove all the spaces around the green box. I add this code to remove the padding.

<el-table :data="tableData" size="mini" :cell-style="{ padding: 0 }">

This is after added the code.

after

Only top and bottom padding is removed but the left and right padding remains. I think the padding is from cell class but I'm not sure how to remove it.

cell class

I tried this but it didnt work.

.el-table .cell {
  padding: 0px
}

Solution

  • try to make the div padding 0 the container

    .el-table {
       padding: 0px
    }