Answers for "html table with lines"

CSS
11

table border css

table, th, td {
  border: 1px solid black;
}
Posted by: Guest on April-14-2020
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