Hey. What is the CSS syntax for the table border to look neat like an Excel table with black border lines instead of that ugly ass thick border???
Printable View
Hey. What is the CSS syntax for the table border to look neat like an Excel table with black border lines instead of that ugly ass thick border???
Try this:
Code:<style>
table /* or td */ {
border: solid black 1px;
}
</style>
...
<table border="0">
...
</table>