mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-14 00:08:51 +00:00
22 lines
303 B
HTML
22 lines
303 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<head>
|
||
|
<style>
|
||
|
.parent {
|
||
|
width: 200px;
|
||
|
height: 200px;
|
||
|
isolation: isolate;
|
||
|
}
|
||
|
.child {
|
||
|
width: 200px;
|
||
|
height: 200px;
|
||
|
background: green;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="parent">
|
||
|
<div class="child">
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|