Could you please review this demonstration and advise me on why I am encountering issues when trying to set up an absolute position on the first row?
Thank you.
html, body { height: 100%; }
.element{ position:absolute; top:0; }
.one{height:500px; background-color:red;}
.two{height:500px; background-color:blue;}
<div class="container">
<div class="row fixed-top">This must be absolute</div>
<div class="row one"></div>
<div class="row two"></div>
</div>