I have designed a table which looks like this,.
I need to give space between all rows and columns in this table. I will attach a sample on how the table should look like,.
Hi @Priya Mv ,
You can use this css -
.table, th, td { border: 1px solid black; }
.table { border-spacing: 10px; }
it will show space between each cell.
hope this will help you.
Thank you.
Hello @Priya Mv,
Please try to add a class to give padding to the table.
.tablepadding {
padding: 10px;
}
Thanks,
Sachin