how to connect a border in a table html code example
Example 1: table border css
table, th, td {
border: 1px solid black;
}
Example 2: css table border-collapse
.table1 {
border-collapse: collapse;
}
table, th, td {
border: 1px solid black;
}
.table1 {
border-collapse: collapse;
}