关于使用table边框重叠问题
作者:互联网
就像这个
其实分割线我们是要的,但是一直找不到table的border怎么去 现在想起来不是去border 而是去表格的边线,然后自己写一个hr就行了,有时候换一种思路可以解决现在的问题。参考文档
https://www.cnblogs.com/moxiaowohuwei/p/7845682.html
table边框完全去掉的方法
表格中边框的显示
只显示上边框 <table frame=above>
只显示下边框 <table frame=below>
只显示左、右边框 <table frame=vsides>
只显示上、下边框 <table frame=hsides>
只显示左边框 <table frame=lhs>
只显示右边框 <table frame=rhs>
不显示任何边框 <tableframe=void>
.表格的分隔线可以隐藏
<table border rules=cols cellspacing=0 align=left> 可以隐藏横向的分隔线
<table border rules=rows cellspacing=0 align=right>可以隐藏纵向的分隔线
<table border rules=none cellspacing=0 align=center>可以隐藏横向和纵向的分隔线
标签:显示,重叠,表格,分隔线,边框,table,隐藏 来源: https://www.cnblogs.com/coderwhytop/p/14143206.html