table样式控制
清除边框和边框间隙
html
<style>
table,
td,
th {
border-style: none;
border: 0;
}
</style>
<table cellspacing="0"></table>
说明
这里是用来清除边框
border-style: none;
border: 0;
这里是用来清除边框间隙
<table cellspacing="0"></table>
扩展
cellspacing=“0”
cellpadding 是边框与其内容的间隙大小;
cellspacing 是边框与边框之间的间隙大小
特别说明
html
<table align="center" style="border-collapse:collapse;"></table>
border-collapse: collapse; 该方式也可以清除边框间隙,但有可能导致 td 的边框粗细不一致,因此不建议采用该方式