Not sure how to go about this piece of code (CSS):
td {
border-bottom: solid 2px lightgray;
}
(featured in the jsfiddle below), to not function but only for the first button click. The reason behind this is because then there would be 2 bottom borders.
http://jsfiddle.net/julianbuscema/yqh2rqh0/38/
Pretty much on the second button click I want the code to be activated
In addition to the style you already have in your question, add :last-child to tr and then style the last td based on that.
Here's a fiddle: http://jsfiddle.net/8a0m19z7/