<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
body {
-webkit-perspective: 15em;
perspective: 15em;
}
.block {
margin: 50px auto;
width: 300px;
height: 10px;
background: black;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-transform: rotateX(-5deg) rotateY(10deg);
transform: rotateX(-5deg) rotateY(10deg);
}
</style>
</head>
<body>
<div class="block"></div>
</body>
</html>