12 lines
182 B
HTML
12 lines
182 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
#box {
|
|
width: 100px;
|
|
height: 100px;
|
|
transform: translateY(100px);
|
|
background-color: green;
|
|
will-change: transform;
|
|
}
|
|
</style>
|
|
|
|
<div id="box"></div>
|