Change the style of the table so that something looks good:
table { border: 1pt solid #000000; border-collapse: separate; border-spacing: 0; font-size: 11pt; width: 100%; }
Edit: To make something look perfect, first delete the entire border of the table, then define each style so that you want to have only one row along the border (create a border for th, td, tr):
table { border-collapse: separate; border : 0px solid #000000; border-spacing: 0; font-size: 11pt; width: 100%; border-color: #000000 ; border-right: 1px solid; } tr { border-color: #000000 ; border-style: none ; border-width: 0 ; } td { border-color: #000000 ; border-left: 1px solid; border-bottom:1px solid ; } th { border-color: #000000 ; border-left: 1px solid; border-top:1px solid ; border-bottom:1px solid ; }
Jean-charles
source share