Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<style>
#container {
transform: scale(0.5);
background-color: lightblue;
font-size: 80px;
}
#animated, #content {
will-change: transform;
}
</style>
<div id=container>
<div id=content>
<div id=animated>Text</div>
</div>
</div>