Tables
Manage tables style:
- To avoid having space between
tdtable { border-collapse: collapse; }Link: w3c tutorial
- To have alternate rows style:
tr:nth-child(even) { background-color: #123456; }Link: StackOverflow
Sources:
Mentionned:
Manage tables style:
td table {
border-collapse: collapse;
}
Link: w3c tutorial
tr:nth-child(even) {
background-color: #123456;
}
Link: StackOverflow
Sources:
Mentionned: