Answers for "table new line 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

Browse Popular Code Answers by Language