Answers for "space in html table rows"

2

html table td spacing

border-spacing: 10px;
border-collapse: separate;
Posted by: Guest on June-11-2021
0

html table line between rows

<style>
table {
  border-collapse: collapse;
}
tr { 
  border: solid;
  border-width: 1px 0;
}
</style>
Posted by: Guest on May-27-2021

Code answers related to "space in html table rows"

Browse Popular Code Answers by Language