下面是源代码
<!DOCTYPE html>
<html>
<head>
<style>
#div1
{
position: relative;
height: 150px;
width: 150px;
margin: 50px;
padding:10px;
border: 1px solid black;
perspective:10000;
-webkit-perspective:15000; /* Safari and Chrome */
transform: perspective(1000px) rotateY(56deg);
}
</style>
</head>
<body>
<div id="div1">
</div>
</body>
</html>