[Solved] How to create this border styles in HTML/CSS? [closed]

Following is a sample (Note that Samples are not complete answers and so my answer is) ,see this, Learn CSS basics The following code will give you the result you want though. //HTML <table style=”border:none;”> <tr> <td>Corporate Finance</td> </tr> <tr> <td>Derivatives</td> </tr> <tr> <td>Economics</td> </tr> </table> // CSS table { border-spacing: 5px; } table, th, … Read more