Element设置表格对角线

Posted OUT_TUO

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Element设置表格对角线相关的知识,希望对你有一定的参考价值。

设置对角线

效果图如下

html代码

<el-table :data="tableList" border stripe show-summary :summary-method="totalOutYear">
      <el-table-column prop="contractBelongToDeptName" label="指标"  align="center"  fixed>
        <el-table-column
          prop="contractBelongToDeptName"
          label="填报部门"
          align="center"
          
          fixed
        ></el-table-column>
      </el-table-column>
      ...
</el-table>

style样式

/* 这里主要的作用就是用来强制修改element默认的样式*/
.el-table thead.is-group th 
  background: none;
  padding: 0px;
  height: 27.4px;


.el-table thead.is-group tr:first-of-type th:first-of-type 
  border-bottom: none; /*中间的横线去掉*/


.el-table thead.is-group tr:first-of-type th:first-of-type div.cell 
  text-align: right; /*上边文字靠右*/


.el-table thead.is-group tr:last-of-type th:first-of-type div.cell 
  text-align: left; /*下边文字靠左*/

/*核心代码*/
.el-table thead.is-group tr:first-of-type th:first-of-type:before 
  content: "";
  position: absolute;
  width: 1px;
  height: 300px; /*斜线的长度*/
  top: 0;
  left: 0;
  background-color: grey;
  opacity: 0.2;
  display: block;
  transform: rotate(-74.5deg); /*调整斜线的角度*/
  transform-origin: top;

以上是关于Element设置表格对角线的主要内容,如果未能解决你的问题,请参考以下文章

如何在表格里加对角线

在HTML中,如何给表格添加对角线?

在HTML中,如何给表格添加对角线?

如何在表格的某单元格中绘制一条对角线

表格对角线怎么弄

element ui的表格列设置fixed后做动态表格出现表格错乱