mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 21:58:41 +02:00
Closes #9416. r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: b66a0014510aaebb7c926160923738fc4fe88ca2
27 lines
366 B
HTML
27 lines
366 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
iframe {
|
|
display: block;
|
|
width: 300px;
|
|
height: 300px;
|
|
position: absolute;
|
|
background: white;
|
|
}
|
|
|
|
.i1 {
|
|
top: 50px;
|
|
left: 50px;
|
|
}
|
|
|
|
.i2 {
|
|
top: 100px;
|
|
left: 100px;
|
|
}
|
|
</style>
|
|
|
|
<iframe class="i1" src="lipsum.html"></iframe>
|
|
<iframe class="i2" src="lipsum.html"></iframe>
|