<main>
  <h2>
    You can only right-click or highlight inside here.
  </h2>
  <small>Or</small>
  <p>
    <strong>In the paragraph below :</strong><br /><br />
    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
  </p>
  <span>even</span>
  <br />
  <table>
    <tr>
      <td>this table</td>
      <td>this table etc.</td>
    </tr>
  </table>
  <br />
  <a href="#!">A link</a>
</main>
<button disabled="disabled" title="but you have no power here"></button>
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: monospace;
}
body{
    display: flex;
    height: 100vh;
}
main{
    margin: auto;
    width: 60vw;
    height: 40vh;
    *{
        margin: 20px 0;
        line-height: 1.5;
    }
    td{
        border: 1px solid lightgray;
        padding: 8px;
    }
}
*:not([disabled]){
    position: relative;
    z-index: 1;
}
[disabled]{
    width: 100%;
    height: 100%;
    background: transparent;
    border: 0;
    position: fixed;
    top: 0;
}
View Compiled
// Update: not working anymore :(

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.