去掉table的空隙
第一种方法
使用HTML属性
<table border="1" cellspacing="0" cellpadding="0"></table>
第二种方法
使用css
table {
border-collapse:collapse;
}
使用HTML属性
<table border="1" cellspacing="0" cellpadding="0"></table>
使用css
table {
border-collapse:collapse;
}