html table line between rows

Solutions on MaxInterview for html table line between rows by the best coders in the world

showing results for - "html table line between rows"
Riccardo
03 Aug 2020
1<style>
2table {
3  border-collapse: collapse;
4}
5tr { 
6  border: solid;
7  border-width: 1px 0;
8}
9</style>
10