CSS - div Fixed dentro de outra div

by Rafael Nepomuceno

HTML

<div class="inflow">
    <div class="positioner"><!-- may not be needed: see notes below-->
      <div class="fixed">adasd</div>
    </div>
  </div>

dlkffddlkfjasldkfjaasdfasdfasdfldlkfjasldkfjaasdfasdfasdfkdlkfjasldkfjaasdfasdfasdffdlkfjasl

CSS

div.inflow {
  width: 200px; 
  height: 500px; 
  border: 1px solid blue; 
  float: right; 
  position: relative; 
  margin-right: 200px;
    background: #cccccc;
}
div.positioner {position: absolute; right: 0;} /*may not be needed: see below*/

div.fixed {
  width: 80px; 
  border: 1px solid red; 
  height: 100px; 
  position: fixed; 
  top: 60px; 
  margin-left: 5px;
}