Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<dialog>
  Modal dialog
  <div class=fixed>
    Fixed pos element
  </div>
</dialog>
<div class=scroller></div>
<style>
  dialog {
    position:absolute;
    outline: 2px solid blue;
  }
  .fixed {
    position:fixed;
    border: 2px solid red;
    background: white;
    z-index: -1;
  }
  .scroller {
     height:2000px;
  }
</style>
<script>
 document.querySelector('dialog').showModal();
</script>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
mfreed7pro
0viewers