Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference: Zoom property on transformed animated element</title>
<link rel="author" href="mailto:salipov@mozilla.com" title="Seva Alipov">
<style>
.container {
width: 200px;
height: 200px;
border: 1px solid;
}
#foo {
width: 100px;
height: 100px;
background: purple;
transform: matrix(1, 0, 0, 1, 100, 100);
}
</style>
<div class="container">
<div id="foo"></div>
</div>