Element UI <el-table>去除外边框

 使用 Element UI <el-table>時,总会自带外边框,写了好多css样式始终不能去除,最终发现是th与td所带的样式。

代码如下

el-table 加 class="customer-no-border-table" 

<el-table
  :data="personnelList" 
  style="width: 100%"
  class="customer-no-border-table" 
  @selection-change="handleSelectionChange">
   <el-table-column type="selection" width="55"></el-table-column>
    
</el-table>

 CSS样式

/*去掉表格单元格边框*/
   .customer-no-border-table th{
     border:none;
   }
.customer-no-border-table td,.customer-no-border-table th.is-leaf {
  border:none;
}
 /*表格最外边框*/
.customer-no-border-table .el-table--border, .el-table--group{
     border: none;
   }
  /*头部边框*/
   .customer-no-border-table thead tr th.is-leaf{
     border: 0px solid #EBEEF5;
     border-right: none;
   }
.customer-no-border-table thead tr th:nth-last-of-type(2){
  border-right: 0px solid #EBEEF5;
}
 /*表格最外层边框-底部边框*/
.customer-no-border-table .el-table--border::after,.customer-no-border-table .el-table--group::after{
     width: 0;
   }
.customer-no-border-table::before{
  width: 0;
}
.customer-no-border-table .el-table__fixed-right::before,.el-table__fixed::before{
  width: 0;
}
.customer-no-border-table .el-table__header tr th{
  background: #fff;
  color: #333333 ;
  padding: 3px ;
  fontWeight: 550 ;
  height: 36px ;
  border: 0px;
  font-size: 15px;
}

修改完后**********************边框已经去除 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
<el-table-column> 是 Element UI 中的一个组件,用于定义表格的列。它可以将表格数据按照不同的方式进行展示,通常分为三个部分: 1. 标题(Title):用于显示列的标题,可以通过设置 `label` 属性来指定标题的内容。 2. 内容(Content):用于显示每个单元格的内容,可以通过设置 `prop` 属性来指定要显示的数据字段。 3. 操作(Operation):用于显示列的操作按钮或者自定义内容,可以通过设置 `slot-scope` 属性来自定义列的内容。 例如,下面是一个示例代码,展示了如何使用 <el-table-column> 来分别展示标题、内容和操作: ```html <template> <el-table :data="tableData"> <el-table-column label="姓名" prop="name"></el-table-column> <el-table-column label="年龄" prop="age"></el-table-column> <el-table-column label="操作" width="120"> <template slot-scope="scope"> <el-button @click="handleEdit(scope.row)">编辑</el-button> <el-button @click="handleDelete(scope.row)">删除</el-button> </template> </el-table-column> </el-table> </template> <script> export default { data() { return { tableData: [ { name: '张三', age: 20 }, { name: '李四', age: 25 }, { name: '王五', age: 30 } ] }; }, methods: { handleEdit(row) { // 编辑操作 }, handleDelete(row) { // 删除操作 } } }; </script> ``` 在上述示例中,第一个 <el-table-column> 定义了一个标题为 "姓名" 的列,通过 `prop` 属性指定了要显示的数据字段为 "name";第二个 <el-table-column> 定义了一个标题为 "年龄" 的列,通过 `prop` 属性指定了要显示的数据字段为 "age";第三个 <el-table-column> 定义了一个标题为 "操作" 的列,通过 `slot-scope` 属性自定义了列的内容,展示了编辑和删除按钮。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值