.table {
background: #fff;
position: relative;
bottom: 210px;
width: 90%;
border: 2px solid #fff;
border-width: 30px;
border-collapse: collapse;
}
.table-year-1 {
font-size: 22px;
width: 2%;
padding-top: 3px;
}
.table-year-2 {
width: 2%;
font-size: 22px;
padding-top: 3px;
}
.table-head-text {
font-size: 18px;
padding-bottom: 8px;
padding-top: 8px;
}
.bk{
font-size:23px;
padding-top: 15px;
padding-bottom: 15px;
}
.top-table-text{
font-size: 26px;
}
table .tr-border{
border-bottom: 1px solid #4f91d8;
}
table .tr-border-top{
border-top: 1px solid #4f91d8;
}
.spacer{
display: table-cell;
width: 3%;
}
td {
font-size: 19px;
padding: 0px 0px 0px 10px;
}
<table class="table">
<tbody>
<tr>
<td class="table-head-text top-table-text">Assets</td>
<td class="table-year-1 bold">2018</td>
<td class="spacer"> </td>
<td class="table-year-2 bold">2017</td>
</tr>
// Rest of the table code goes here
In order to create separation, I need to change the bottom border color to white at specific sections. Currently, all borders have one color. I'm working on adding white borders for better distinction between the blue and grey areas. This example image illustrates how I want the border changes to look.