html table row 删除线
时间: 2023-10-24 08:08:22 浏览: 161
vxe-table vue表格解决方案-其他
在HTML中给table的row添加删除线可以使用CSS样式来实现。根据提供的引用,可以使用以下样式代码添加删除线:
```html
<style>
.del_line::after {
content: no-open-quote;
position: absolute;
top: 50%;
left: 0;
width: 100%;
border-bottom: 1px solid #000;
}
</style>
```
在你的HTML代码中,给需要添加删除线的行的class添加`del_line`类,即可实现删除线效果。
阅读全文