JSFiddle - React, Tailwind, and code Playground
by miley
HTML
<div id="content">
<div id="div">
Fixed Content
</div>
</div>
CSS
#content {
margin: 0 auto;
max-width: 1000px;
height:1000px;
background:#ccc;
}
#div {
width: 150px;
position: fixed;
right: 0px;
background:#888;
color:#fff;
}