The HTML border attribute doesn’t create the prettiest of borders for tables. You can use a CSS border, which gives you more flexibility in terms of design.
You can use the next CSS code to specify the border around the table:
.datatable
{
border: 4px solid #04B404;
border-collapse: collapse;
}
You can render the border around table cells with …