**Fix only with another div **
Here is the code that I used... HTML code,
   <div class="container">
        <div class="fix">
            Here fixed content
        </div>
   </div>
CSS code,
.container{
    display:flexbox;
    height: 40em;
    background-color: black;
}
.fix{
    position: fixed;
    width: 25em;
    height: 30em;
    background-color: beige;
}
 
     
    