.table-responsive{
    width:100%;
    table-layout: fixed;
}

.table-responsive th{
    background:yellow;
}

.table-responsive td{
    background:blue;
}

@media(max-width:768px){
    .table-responsive tr td,
    .table-responsive tr th{
        display:block;
        width:100%;
    }
}