Answers for "gap between table rows html"

1

table add margin between rows

table {
  border-collapse: collapse;
  border-collapse: separate;
  border-spacing: 0 16px;
}
Posted by: Guest on January-28-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 "gap between table rows html"

Browse Popular Code Answers by Language