resetting default table styles

Solutions on MaxInterview for resetting default table styles by the best coders in the world

showing results for - "resetting default table styles"
Leah
17 Aug 2017
1table, caption, tbody, tfoot, thead, tr, th, td {
2  margin: 0;
3  padding: 0;
4  border: 0;
5  font-size: 100%;
6  font: inherit;
7  vertical-align: baseline;
8}
9table {
10  border-collapse: collapse;
11  border-spacing: 0;
12}