There is a block that is located under the heading; the heading is adjusted on top of it, but it is necessary that the paragraph inside the block be adjusted over the heading. Is this realistic to implement?
* { box-sizing: border-box; margin:0; padding:0; } div { width: 400px; height: 400px; background: gray; position: absolute; top: 0; z-index: 1; } h1 { position: absolute; z-index: 2; border: 1px black solid; width: 500px; left: 0; } p { text-align: right; position: relative; z-index: 3; } <body> <h1>Этот мешает</h1> <div> <p>Я хочу скопировать этот текст</p> </div> </body>