Is there a way to make td elements scrollable (excluding the table side column) when the screen size is smaller than a certain threshold, x?
To clarify, take a look at this example: http://jsfiddle.net/uf32ojm5/7/
My goal is to have only the comments fields scroll while keeping the "group" column fixed.
To achieve the fixed "group" column, I've used the following CSS code:
@media only screen and (max-width: 590px) {
.groupColm{
position:fixed;
min-width:100px;
z-index:1;
}
}
However, how can I specifically scroll only the comments fields?
Thank you for your assistance!