From CSS table guide.

Add border

table, th, td {
  border: 1px solid;
}

Collapse borders to not have double borders.

table {
  border-collapse: collapse;
}

Full width

table {
  width: 100%;
}