Is there any solution without JS?
html
css
there is already a width on the column, just set the width of the fixed element to inherit. no reason to complicate things.
CSS:
.col-sm-3 { width: 25%; } .fixed-in-col { width: inherit; ... }
HTML:
...