vue中使用el-table调整行间距
在vue中使用el-table但是行间距利用padding或者margin不起作用,是因为display使用的是table属性,所以我们要利用table特性来进行处理。 .el-table { width: 100%; margin-bottom: 20px; &::before { display: none; } .el-table__body { //-webkit-border-horizontal-spacing: 13px; // 水平间距 -webkit-border-vertical-spacing: 10px; // 垂直间距 设置的是行间距 } //以下代码是实现边框效果 thead th { font-size: 14px; color: #575757; &:nth-last-child(2) { border-right: 1px solid rgba(0, 0, 0, 0.1) !important; border-radius: 0 5px 5px 0; right: 1px; } } thead th, .el-table__row … Read more