Change your CSS to the following. It has a typo.
<style>
th {
border: 1px solid black;
padding-left: 7px;
padding-right: 7px;
}
</style>
If you want to add border to tr visit this link.
Change your CSS to the following. It has a typo.
<style>
th {
border: 1px solid black;
padding-left: 7px;
padding-right: 7px;
}
</style>
If you want to add border to tr visit this link.
<style type="text/css">
th {
border: solid 1px black;
padding-left: 7px;
padding-right: 7px;
}
</style>
Actually in your code your are giving border to tr which does not make sense click here to know more.
So replace tr to th in your above code and it work.