JSFiddle - React, Tailwind, and code Playground
HTML
<div id="my_div">Text Here</div>
<div id="other"></div>
CSS
#my_div{
position: fixed;
background: white;
left: 0px;
}
#other{
width: 1000px;
height: 1000px;
background: black;
}
JavaScript
$(window).scroll(function (e) {
$('#my_div').css({left: -$(window).scrollLeft()})
});