mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
00a701ff71
--HG-- extra : rebase_source : 565cbebb5a7db17949a34cd41c9f0018db781caf
34 lines
434 B
HTML
34 lines
434 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
div {
|
|
position:relative;
|
|
width:300px;
|
|
height:200px;
|
|
left:50px;
|
|
top:50px;
|
|
transform-style:preserve-3d;
|
|
}
|
|
.grandparentdiv {
|
|
background:yellow;
|
|
overflow:hidden;
|
|
}
|
|
.childdiv {
|
|
background:green;
|
|
}
|
|
.grandchilddiv {
|
|
background:red;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="grandparentdiv">
|
|
<div class="childdiv">
|
|
<div class="grandchilddiv"></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|