Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<title>Cross-domain iframe paint order</title>
<link rel="help" href="https://www.w3.org/TR/CSS2/zindex.html">
<link rel="match" href="cross-domain-iframe-paint-order-ref.html">
<style>
iframe {
display: block;
background: red;
width: 100px;
height: 100px;
padding: 30px;
border: none;
box-sizing: border-box;
}
#negative-margin {
width: 100px;
height: 100px;
background: lime;
margin-top: -100px;
}
</style>
<!-- #negative-margin should paint on top of the background of the iframe
(but not the contents). -->
<div id="negative-margin"></div>