Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype html>
<html>
<body>
<style>
body
{
transform-style: preserve-3d;
}
.absolute
{
position: absolute;
width: 100px;
height: 100px;
transform: translateX(0%);
background-color: red;
}
.relative
{
position: relative;
background-color: green;
width: 100px;
height: 100px;
}
</style>
<div>
<div class="absolute"></div>
<div class="relative"></div>
</div>
</body>
</html>