Position Testing

Test css position

by Eric Pias

HTML

<div style="background-color: yellow; height: 400px; width:400px;">
    
    <div><span> Some text</span><div>  
  <div style="background-color: orange; height: 200px; width:200px; position: relative; top:0; left:0;">
      <div style="background-color: red; height: 100px; width:100px; position: absolute; top:0; left:0; clip: auto;">
          <span style="display: inline;">test text</span>
      <div>
  </div>
    
</div>