Hi there,
I am wondering how to set the border of all table records' row to, say it 2 px:
i tried this, but it does not work:
.table-row { border: 2px solid black; border-collapse: collapse;}
thanks
Hi Indra,
If you add style .table-row td { border-bottom: 2px solid black;} then your result will be like this
But if you add style as .table-row td { border: 2px solid black;} , then your result will be like this
Also to make the header 2px add the below class as well.
.table-header th {
border: 2px solid black;
}
Add your classes like this
Final output:
Hope it helps,
Thank u, Sir,
But in my Table Record there is HTML element Table... and it works for the element table, not the Table Record one.
Hello,
Try this CSS:
.table-row td { border-bottom: 2px solid black;}
thanks, Sir.
It does not work on the Table record's rows, but it works on the html element table:
I mean this "green" row, not the "red" row:
hi @Indra Budiantho
try to do this
.table-header th{
border-bottom: 2px solid black;
.table-row td{
as i am seeing that you are facing problem to modify the table css. i am sharing the link from there you will have the idea.
https://www.w3schools.com/html/html_tables.asp
hope this helps
Thanks
Prince