Answers for "how to put lines in tables html"

0

see line from table html

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

see line from table html

​table tr {
    border-bottom: 1px solid black;
}​

table tr:last-child { 
    border-bottom: none; 
}
Posted by: Guest on June-24-2021

Code answers related to "how to put lines in tables html"

Browse Popular Code Answers by Language