请问怎么去掉 elementPlus中 el-table的这两条白色的线条
F12查找元素做修改
怎么改变的样式,右面那个感觉不像table的
<el-table
:data="tableData"
:cell-style="{
backgroundColor: '#081832',
borderColor: '#0d2967'
}"
style="width: 100%">
</el-table>
:deep(.el-table__inner-wrapper::before) {
background-color: #0d2967;
}