x
1
2
<html>
3
<head>
4
<style>
5
div
6
{
7
width: 300px;
8
height: 100px;
9
background-color: #2196F3;
10
border: 2px solid orange;
11
color:white;
12
font-size:18px;
13
}
14
15
.transform
16
{
17
transform: none;
18
}
19
</style>
20
</head>
21
<body>
22
23
<h1>CSS 3D transforms</h1>
24
<p>CSS 3D transform with none.</p>
25
<div class="transform">With Transform none.</div>
26
27
</body>
28
</html>