I have an iframe embedded into my page. There is a div inside the iframe which needs to always stay in the center of the screen, even when I scroll.
My page is set up in a way that iframe fits completely, without scrollbars:
main page:
...
<body>
...some content
<iframe src="test.html" width="200px" height="700px">
</frame>
...
</body>
...
test.html:
...
<div class="modal_window">
<p>Very important message</p>
</div>
...
How can I make my div.modal_window
always stay in the center of the screen (if the iframe is visible on the screen, of course)? Preferably using css only