Doubt in styling tables assessment

In styling tables assessment,I have added below css but table border bottom is not complete.pfa


table{
border-top:1px solid;
border-bottom:1px solid lightgrey;
border-collapse:collapse;
width:100%;
table-layout:fixed;
}
th,td{
padding-left:5px;
}
#col1{
width:35%;
vertical-align:top;
text-align:left;
}
#col2{
width:10%;
text-align:right;
}
#col3{
width:15%;
text-align:right;

}
#col4{
width:45%;
text-align:left;
vertical-align:top;

}
tbody tr:nth-child(odd){
background-color:grey;
}
.foot{
border-top:1px solid grey;
width:100%;
}
tfoot th{
text-align:right;
}
tbody tr th:nth-child(1){text-align:left}
tbody tr td:nth-child(2){text-align:right}
tbody tr td:nth-child(3){text-align:right}
tbody tr td:nth-child(4){text-align:left}

Hello @Shashi_Reddy

you doing great is see a little type error on that line

.foot{
border-top:1px solid grey;
width:100%;
} 

the selector is tfoot not .foot :wink:

hope that help and have a nice day :slight_smile: