blob: 47a31261c638aae6de1a3a68f2c21084b2e68f82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE html>
<html>
<head>
<style type="text/css" media="screen">
body {
margin: 0;
}
.box {
height: 200px;
width: 200px;
transform: translateZ(0);
}
.box:hover {
transform: none;
}
</style>
</head>
<body>
<div class="box" style="background-color: green;"></div>
<div class="box" style="background-color: red;"></div>
</body>
</html>
|