[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, td {
    margin-top:2px;
    border-left: 1px solid #E8E8E8;
    border-bottom:2px solid #E8E8E8;
    border-right:1px solid #E8E8E8;
    margin-top:2px;
}

3

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