blob: 569f28687c5da8ef92f5efd32e05774658c4e5e8 [file] [log] [blame]
<html>
<head>
<style>
div {
width:100px;
height:100px;
border:10px solid black;
background-color:skyblue;
margin:100px;
}
.skew {
-webkit-transform:skew(0, 45deg)
}
</style>
</head>
<body>
In the example below you should a y-skewed block (45 degree angle of skew).
<div class="skew"></div>