Answers for "Resetting Default Table Styles"

CSS
0

Resetting Default Table Styles

table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
Posted by: Guest on June-12-2021

Browse Popular Code Answers by Language