CSS table properties allow you to control the appearance and layout of table elements.
table {
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid black;
padding: 8px;
}
All major browsers support table properties.