I need a simple solution. I know it\'s similar to some other questions, like:
I just made the right-most sticky column of a table sticky.
th:last-of-type {
position: sticky;
right: 0;
width: 120px;
background: #f7f7f7;
}
td:last-of-type {
position: sticky;
right: 0;
background: #f7f7f7;
width: 120px;
}
I believe if you'll do {position: sticky; left: 0;}
, you'll get the desired result.