table{ border-collapse:collapse }
table table{ border-style:hidden } <!-- HTML部分 -->
<table width="400" border="1" cellpadding="0" cellspacing="0">
<tr>
<td width="200">&nbsp</td>
<td width="200">&nbsp</td>
</tr>
<tr>
<td>&nbsp</td>
<td>
<table width="200" border="1" cellpadding="0" cellspacing="0">
<tr>
<td>&nbsp</td>
<td>&nbsp</td>
</tr>
<tr>
<td>&nbsp</td>
<td>&nbsp</td>
</tr>
</table>
</td>
</tr>
</table>
html中如果设置table的border为1px,实际会产生双线,十分不美观,那么在HTML中如何正确设置表格table边框border呢?
第一种方法:
1、将table的属性设置为:BORDER=0 、cellspacing=1 ;
2、设置table的背景色为即你要设置的table的边框颜色;
3、设置所有td背景色为#ffffff白色;
第二种方法:
1、设置BORDER=0 ;
2、再通过CSS,给Table加上1px的border-top,border-left;
3、然后再设置所有的td的border-right,border-bottom;
第三种方法(推荐):
1、设置table的CSS为{border-collapse:collapseborder-style: solidborder-width: 1px}
注:border-collapse:collapse
separate默认值。边框会被分开。不会忽略 border-spacing 和 empty-cells 属性。
collapse如果可能,边框会合并为一个单一的边框。会忽略 border-spacing 和 empty-cells 属性。
inherit 规定应该从父元素继承 border-collapse 属性的值。
2、再设置td的CSS为{border-style: solidborder-width: 1px}
转自: https://www.cnblogs.com/qq2806933146xiaobai/p/12407749.html
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)